18 lines
359 B
HTML
18 lines
359 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Account Linking Success</title>
|
|
</head>
|
|
<body>
|
|
<h2>
|
|
Success! Your account is linked to Last.fm. You can close this tab now.
|
|
</h2>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
window.close();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|