-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (46 loc) · 1.79 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Prototype: real-time voice recognition</title>
<script type="text/javascript" charset="UTF-8" src="static/js/d3.min.js"></script>
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="static/css/styling.css">
<!-- CSS Frameworks -->
<link rel="stylesheet" href="static/css/normalize.css">
<link rel="stylesheet" href="static/css/skeleton.css">
<script src="https://use.fontawesome.com/20e44b5acd.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="ten columns">
<h1>Sodan <small id='proto'>Prototype</small></h1>
</div>
</div>
<div class="row">
<!-- Input -->
<i class="fa fa-user-o"></i> <input class="name_input" placeholder="Add New User..."/>
<label for="switchMode"> Mode: </label>
<!-- Select -->
<select id="switchMode" onchange="switchMode(this)" name="switchMode">
<option selected value="timer">Timer</option>
<option value="voice">Voice Recognition</option>
</select>
<br/>
<!-- Buttons -->
<div id="buttons"></div>
<!-- End Buttons -->
</div>
<div class="row">
<!-- Pie Chart -->
<div id="pie"></div>
<!-- End Pie Chart -->
</div>
<footer>Open source project by: <a href="http://github.com/qcldn">Queer Code London</a></footer>
</div>
<script src="static/js/draw_pie_chart.js"></script>
<script src="static/js/voice_recognition.js"></script>
<script src="static/js/main.js"></script>
</body>
</html>