koel/resources/views/api/lastfm/callback.blade.php
2015-12-20 20:17:35 +08:00

21 lines
505 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>Authentication successful!</title>
<meta charset="utf-8">
</head>
<body>
<h3>Perfecto!</h3>
<p>Koel has successfully connected to your Last.fm account and is now restarting for the exciting features.</p>
<p>This window will automatically close in 3 seconds.</p>
<script>
window.opener.location.reload(false);
window.setTimeout(function () {
window.close();
}, 3000);
</script>
</body>
</html>