-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
97 lines (70 loc) · 2.79 KB
/
dashboard.html
File metadata and controls
97 lines (70 loc) · 2.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<!-- Custom Styles -->
<link rel="stylesheet" href="main.css">
<script src="https://www.gstatic.com/firebasejs/4.2.0/firebase.js"></script>
</head>
<body id="dashboardBody" >
<div class="container-fluid">
<div class="row">
<div id="leftDashboard" class="col-md-3">
<div id="leftDashboardHeader" class="mx-auto d-block">
<h1>Hello Space Ranger, Ben!</h1>
</div>
<div class="mx-auto d-block" id="score">
Current Score: <span id="scorevalue">0</span>
</div>
<div class="mx-auto" id="timeremaining">
Time remaining: <span id="timeremainingvalue">60</span> sec
</div>
<div class="mx-auto d-block" id="startreset">
Start Game
</div>
</div>
<div id="gameView" class="col-md-9">
<div>
<div id="correct">
Correct
</div>
<div id="wrong">
Try again
</div>
<div id="question">
</div>
<div class="text-center" id="gameOver">
</div>
</div>
</div>
</div>
<div class="row" id="dashboardFooter">
<div class="col-md-3">
<img class="App-logo mx-auto d-block" src="./img/spinLogo.png" alt="">
</div>
<div class="col-md-9 mx-auto">
<div id="instruction">
Click on the correct answer
</div>
<div id="choices">
<div id="box1" class="box"></div>
<div id="box2" class="box"></div>
<div id="box3" class="box"></div>
<div id="box4" class="box"></div>
</div>
</div>
</div>
</div>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<!-- Game Script -->
<script src="js/game.js">
</script>
</body>
</html>