-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
36 lines (32 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Most Played Songs On Spotify</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<header>
<h1>Your Most Played Songs On Spotify</h1>
<p class="subtitle">Below are the top 50 most-played songs on your Spotify account</p>
</header>
<section id="auth-section">
<p class="setup-note" id="redirect-uri-note"></p>
<button id="login-btn">Connect To Your Spotify Account</button>
</section>
<section id="tracks-section" hidden>
<div id="tracks-list"></div>
<div class="create-btn-wrapper">
<button id="create-playlist-btn">Save as Playlist to Your Spotify Account</button>
</div>
</section>
<div id="status" role="status" aria-live="polite"></div>
<footer class="spotify-credit">
Music data provided by <a href="https://www.spotify.com" target="_blank" rel="noopener noreferrer">Spotify</a>
</footer>
</main>
<script src="app.js"></script>
</body>
</html>