-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Fredbox</title>
<!-- Include the stylesheets you need for the Views components -->
<!-- See https://developer.spotify.com/docs/apps/views/1.0/ -->
<link rel="stylesheet" href="$views/css/image.css">
<link rel="stylesheet" href="$views/css/list.css">
<link rel="stylesheet" href="$views/css/buttons.css">
<!-- <link rel="stylesheet" href="$views/css/throbber.css"> -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</head>
<body>
<h1>Fredbox</h1>
<form>
<input class="form-control" type="text" placeholder="Enter the playlist name...">
<button class="btn btn-primary btn-lg" data-loading-text="loading...">START</button>
</form>
<script src="scripts/main.js"></script>
</body>
</html>