forked from CodeCorp/Voizzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (70 loc) · 2.64 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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<title>Voizzle - The Puzzle</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="">
<link rel="stylesheet" href="style/reset.css">
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/bootstrap.min.css">
<script src="js/jquery-2.2.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="js/socket-controller.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" id="top-nav">
<div class="navbar-header">
<a class="navbar-brand" href="#">Voizzle</a>
</div>
<div id="score-board">
<div class="btn btn-circle btn-warning score-wrapper" id="score-wrapper-1"><span class="score" id="score-1">0</span></div>
<div class="btn btn-circle btn-success score-wrapper" id="score-wrapper-2"><span class="score" id="score-2">0</span></div>
</div>
</nav>
<div class="container">
<div id="puzzle-wrapper">
</div>
<div id="right-area-wrapper">
<div id="input-wrapper">
<input type="text" class="" id="voice-input">
<button id="mic" type="button" class="btn btn-primary" onclick="toggleDictation()">Speak</button>
</div>
<div id="interim-wrapper">
<span>You're speaking : </span>
<span id="interim">- - - </span>
</div>
<div id="log-wrapper">
<div id="log-header"><button type="button" class="btn btn-primary">LOGS</button></div>
<div id="logs">
<!-- <button type="button" class="btn log-button highlight-1">TEST1</button> -->
<!-- <button type="button" class="btn log-button highlight-2">TEST2</button> -->
<!-- <button type="button" class="btn log-button highlight-1">TEST3</button> -->
</div>
</div>
<div id="new-game-wrapper">
<button type="button" class="btn btn-primary" id="new-game-btn">New Game</button>
<input type="text" class="" id="game-no">
</div>
</div>
<div id="timer-wrapper">
<div id="time-header">
<button type="button" id="timer-btn" class="btn btn-danger">Timer</button>
</div>
<div id="timer-div">
<div id="timer"></div>
<div id="winner-declaration">
<p id="line-1" class="winner-text"></p>
<p id="line-2" class="winner-text"></p>
<p id="press-new-game">Press New Game</p>
</div>
</div>
</div>
</div>
<div id="footer">
<a id="footer-text" href="https://github.com/CodeCorp" target="_blank">Powered By CodeCorp</a>
</div>
</body>
</html>