-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (61 loc) · 2.15 KB
/
popup.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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/bootstrap.css">
<body>
<div class="page">
<div class="page-container">
<div class="container">
<div class="row header">
<div class="span4">
<a id="title-link" target="_blank"><h2>Music<strong>Diary</strong></h2></a>
</div>
</div>
<div class="row">
<div class="span6">
<div id="config" style="display: none"></div>
<div id="login" class="alert alert-error">
Please <a id="signup-link" target="_blank">Login</a> to add music to your diary
</div>
<div id="authenticated" class="alert alert-success">
You are authenticated. Music is being added to your diary!
</div>
<div id="auth-error" class="alert alert-error">
There was a problem connecting to MusicDiary. Please try again.
</div>
</div>
</div>
<div class="row header">
<div class="span6">
<h4>Last 5 Songs</h4>
<span id="diary-loading" class="label label-info">Loading...</span>
<table id="diary-table" class="table table-striped">
<thead>
<td id="album-icon"></td>
<td></td>
<td></td>
</thead>
</table>
</div>
</div>
<div class="row header">
<div class="span6">
<h4>Top 5 Songs</h4>
<span id="playlist-loading" class="label label-info">Loading...</span>
<table id="playlist-table" class="table table-striped">
<thead>
<td id="album-icon"></td>
<td></td>
<td>Song Count</td>
</thead>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="lib/jquery-1.8.3.js"></script>
<script src="lib/underscore-1.4.4.js"></script>
<script src="popup.js"></script>
</html>