Implement Last.fm account linking UI

This commit is contained in:
Steve Richter
2021-06-21 21:20:44 -04:00
committed by Deluan Quintão
parent 8b62a58b4c
commit 5fbfd9c81e
6 changed files with 149 additions and 89 deletions
+17 -1
View File
@@ -1 +1,17 @@
Success! Your account is linked to Last.FM. You can close this tab now.
<!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>