-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 2.61 KB
/
index.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>
<head>
<!-- Spotify CSS Files -->
<link rel="stylesheet" type="text/css" charset="utf-8" href="sp://resources/css/eve.css">
<link rel="stylesheet" type="text/css" charset="utf-8" href="sp://resources/css/api.css">
<link rel="stylesheet" type="text/css" charset="utf-8" href="sp://resources/css/player.css">
<link rel="stylesheet" type="text/css" charset="utf-8" href="sp://resources/css/ui.css">
<link rel="stylesheet" type="text/css" charset="utf-8" href="sp://resources/css/list.css">
<style>
@import url('sp://sorterizer/css/main.css');
@import url('sp://sorterizer/css/jquery-ui.css');
</style>
<script src="sp://sorterizer/js/jquery.js"></script>
<script src="sp://sorterizer/js/jquery-ui.js"></script>
<script src="sp://sorterizer/site.js"></script>
</head>
<body>
<div id="wrapper">
<div id="index" class="section">
<style>
#index {text-align:center;}
#dropbox {display:table; border:3px dashed #666; text-align:center; margin:auto;}
#dropbox.over {opacity:0.8; border-color:#0078a3;}
#dropbox-text {width:88px; height:88px; text-align:center; padding:20px;}
#smart-player {display:none; margin:1px; margin-bottom:-3px}
.sort-radio-label {font-weight:normal; height:25px;}
</style>
<div id="dropbox">
<div id="dropbox-text">Drop Playlist Here</div>
<div id="smart-player"></div>
</div>
<div class="spacer" style="height:25px;"></div>
<div id="sort-title-container">
<span>New Playlist Title</span>
<input type="text" id="sort-title" class="text ui-corner-all" />
</div>
<div class="spacer" style="height:25px;"></div>
<div id="sort-radio-container">
<span>Sort by</span>
<label for="sort-on-title" class="sort-radio-label">Title</label>
<input type="radio" id="sort-on-title" name="sort-radio" />
<label for="sort-on-artist" class="sort-radio-label">Artist</label>
<input type="radio" id="sort-on-artist" name="sort-radio" />
<label for="sort-on-album" class="sort-radio-label">Album</label>
<input type="radio" id="sort-on-album" name="sort-radio" />
<label for="sort-on-popularity" class="sort-radio-label">Popularity</label>
<input type="radio" id="sort-on-popularity" name="sort-radio" />
</div>
<div class="spacer" style="height:25px;"></div>
<button id="sort-button">Sort It!</button>
</div><!-- /.section #index -->
</div><!-- /wrapper -->
</body>
</html>