forked from ceremonious/Monikers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 1.92 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
<!DOCTYPE html>
<html>
<title>Monikers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, shrink-to-fit=no, minimal-ui">
<link rel="icon" href="res/favicon.ico">
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/jquery.countdown360.min.js"></script>
<script src="js/monikers.js"></script>
<script src="js/display.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-91620866-1', 'auto');
ga('send', 'pageview');
</script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<body>
<div id="container">
<div id="navbar">
Monikers
<ul class="navitem">
<a target="_blank" href="http://monikers.yannickweiss.com/rules.pdf"><li>Rules</li></a>
<li onclick="pause()">Pause</li>
<li onclick="restart()">Restart</li>
</ul>
</div>
<div id="cardContainer">
<h1>Welcome to Monikers!</h1>
<div>
<p class="numCards">Choose how many cards you would like to use: </p>
<input class="numCards" type="number" id="numCardsInput" value="40"/>
</div>
<div>
<p class="numCards">Team 1 Name: </p>
<input class="numCards" type="text" id="team1Input"/>
</div>
<div>
<p class="numCards">Team 2 Name: </p>
<input class="numCards" type="text" id="team2Input"/>
</div>
<button type="button" onClick="startTurn()" id="startButton"><p>Start Round</p></button>
</div>
<div id="buttonContainer">
<img id="undoButton" src="res/undo.png" onclick="undo()"></img>
<div id="correctButton" onclick="correct()"><p>Got it!</p></div>
<div id="passButton" onclick="pass()"><p>Pass!</p></div>
</div>
</div>
</body>
</html>