quintodrome/core/agents/lastfm/token_received.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
428 B
HTML
Raw Normal View History

2021-06-21 17:20:44 -08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Account Linking Success</title>
</head>
<body>
<h2 id="msg"></h2>
2021-06-21 17:20:44 -08:00
<script>
setTimeout("document.getElementById('msg').innerHTML = 'Success! Your account is linked to Last.fm. You can close this tab now.';",2000)
2021-06-21 17:20:44 -08:00
document.addEventListener("DOMContentLoaded", () => {
window.close();
});
</script>
</body>
</html>