-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (51 loc) · 2.08 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
<html>
<head lang="en">
<meta charset="UTF-8">
<link rel="stylesheet" href="css/united.bootstrap.min.css">
<link rel="icon" type="image/png" href="favicon.png">
<title>MultiMath</title>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<span class="navbar-brand">MultiMath</span>
</div>
</div>
</nav>
<div class="form-horizontal" id="nameform">
<div class="form-group">
<label for="playername" class="col-sm-2 control-label">Player Name</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="playername" size="20" placeholder="Player Name" />
</div>
</div>
<div class="form-group">
<label for="factor" class="col-sm-2 control-label">Factor</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="factor" size="20" value="5" placeholder="Factor" />
</div>
</div>
<div class="form-group">
<label for="problemCount" class="col-sm-2 control-label">Number of Problems</label>
<div class="col-sm-2">
<input type="text" class="form-control" id="problemCount" size="20" placeholder="Number of Problems" />
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button class="btn btn-primary" id="startGame">Start Game</button>
<button class="btn btn-success" id="calculate" disabled>Calculate Score</button>
</div>
</div>
</div>
<div class="form-horizontal" id="game"></div>
<div class="col-sm-offset-2 col-sm-10" id="scores">
<h2>Scoreboard</h2>
<h4 id="postedScores">No scores yet</h4>
</div>
<div class="col-sm-offset-2 col-sm-10" id="messages"></div>
<!-- add script tags here -->
<script src="bundle.js"></script>
</body>
</html>