-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
26 lines (25 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Spotify statistics</title>
<link rel="stylesheet" type="text/css" href="src/css/app.css">
</head>
<body>
<main class="content">
<section class="introduction">
<h1>Gain insight into your listening preferences</h1>
<p class="introduction__description">This app will help you discover new music. To get started, simply authorize yourself with your current spotify account. Your data will only be touched by spotify. Display of details is achieved by using a client-side token.
</p>
<a class="button button--introduction" href="https://accounts.spotify.com/authorize?client_id=a8c354057fed434dbf266cb7d49f2149&redirect_uri=https://pidoubleju.github.io/&scope=user-read-private%20user-read-email%20user-top-read&response_type=token&state=123">Authorize now!</a>
</section>
<section class="artists">
<h1 class="artists__description">These are your favorite artists</h1>
<div class="artists__listing"></div>
</section>
</main>
<script type="module" src="./src/js/app.js"></script>
</body>
</html>