mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
30 lines
743 B
PHP
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>
|