-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>I Can Has Quiz</title>
<script src="server/mobile/js/libs/jquery-1.7.1.min.js"></script>
<script src="http://ichq.crov.se/socket.io/socket.io.js"></script>
<link rel="stylesheet" href="sp://import/css/adam.css">
<link rel="stylesheet" href="ichq.css">
<script type="text/javascript">
$(function() {
sp = getSpotifyApi(1);
ichq = sp.require('ichq');
ichq.init();
});
</script>
</head>
<body>
<div id="connectionstatus">Connecting...</div>
<h1 id="header">I Can Haz Quiz! LOLz!!!</h1>
<form id="create-quiz">
<p>
<label>
Playlist:
<input type="text" name="playlist" value="http://open.spotify.com/user/crovax/playlist/2tTBUFGoQCEVJFHLHW05oN"/>
</label>
</p>
<p>
<label>
Name:
<input type="text" name="name" value="Testquiz 1"/>
</label>
</p>
<p>
<input type="submit" value="Create quiz"/>
</p>
</form>
<ol id="players"></ol>
<form id="start-quiz">
<input type="submit" value="Start quiz"/>
</form>
<h1 id="currenttrack"></h1>
<ol id="answers"></ol>
<form id="next-question">
<input type="submit" value="Next question" disabled="disabled"/>
</form>
<img src="cat.jpg" alt="LOLCAT"/>
</body>
</html>