-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
55 lines (55 loc) · 1.82 KB
/
home.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Add to Spotify</title>
<link href="extension.css" rel="stylesheet">
</head>
<body>
<div class="form-container content-container">
<form action="" class="form" method="post">
<fieldset>
<div id="headerLoggedOut">
<br />
<h3>
<div style="font-size: 150%">Add any song you hear in Chrome to Spotify.</div>
</h3>
</div>
<div id="headerLoggedIn">
</div>
<div id="whenLoggedOut">
<a class="signup-btn" id=
"connect" style="margin-top: 10px;">Connect with Spotify</a>
<br />
<br />
</div>
<div id="whenLoggedIn">
<div style="text-align: center">
<br />
<span style="color: white; font-size: 120%" id="song-track"></span>
<span style="font-size: 70%" id="song-artist"></span>
<br />
<br />
<a class="signup-btn" id="add-to-spotify">Add to Spotify</a>
<br />
<br />
<div id="loading_message"></div>
<div id="playlists"></div>
<br />
</div>
</div>
</fieldset>
<footer class="form-footer" style="display: none">
<div id="logout">
<a class="signup-btn logout" id="remove" style=
"margin-top: 10px;">Logout</a>
</div>
</footer>
</form>
</div>
<script src="defines.js"></script>
<script src="jquery-1.10.2.min.js"></script>
<script src="notifications.js"></script>
<script src="popup.js"></script>
</body>
</html>