This repository was archived by the owner on Jan 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 1.54 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 1.54 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<title>PlayInReverse</title>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.1.js"></script>
<script type="text/javascript" src="app.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
.jumbotron {
background-color: #333;
color: #fff;
}
.jumbotron p {
color: #aaa;
}
.jumbotron a {
color: #fff;
}
</style>
</head>
<body onload="startApp()">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h2><i class="fa fa-refresh"></i> PlayInReverse - sort a Spotify playlist in reverse order</h2>
<p>
Browse the source code on <a href="https://github.com/nachowski/PlayInReverse">GitHub</a>
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<p><button class="btn btn-lg btn-primary btn" id="start">Choose a Spotify playlist</button></p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p><a class="btn btn-lg btn-primary btn-success" style="display: none;" id="playlistlink">View playlist in spotify</a></p>
</div>
<div class="col-md-12">
<p><ul data-role="listview" data-inset="true" id="playlist-list" data-theme="a" /></p>
</div>
</div>
</div>
</body>
</html>