mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
16 lines
428 B
HTML
16 lines
428 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Account Linking Success</title>
|
|
</head>
|
|
<body>
|
|
<h2 id="msg"></h2>
|
|
<script>
|
|
setTimeout("document.getElementById('msg').innerHTML = 'Success! Your account is linked to Last.fm. You can close this tab now.';",2000)
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
window.close();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|