koel/resources/views/lastfm/callback.blade.php
2022-07-17 00:42:29 +02:00

30 lines
743 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<title>Authentication successful!</title>
<meta charset="utf-8">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
</style>
</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.onbeforeunload = function () {
}
window.opener.location.reload(false)
window.setTimeout(function () {
window.close()
}, 3000)
</script>
</body>
</html>