-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (65 loc) · 2.4 KB
/
index.html
File metadata and controls
84 lines (65 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0,
user-scalable=no" />
<title>DataLogger</title>
</head>
<body>
<div id="helpModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Instructions:</h5>
</div>
<div class="modal-body">
<p>  Press Left Click on the Triangle<p>
<p>  Press Right Click on the Reversed Triangle<p>
<p>  Press Double Click on the Square<p>
<p>  Drop the Circle to the Goal Position<p>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon3">Please enter measurement period (in minutes):</span>
</div>
<input id="measurementPeriod" type="number" min="1" max="60" class="form-control" id="basic-url" aria-describedby="basic-addon3" value="3">
</div>
<div id="measurementPeriodAlert" class="alert alert-danger" role="alert">
Measurement period must be an integer between 1 and 60!
</div>
<div class="modal-footer">
<button id="startMeasurementBtn" type="button" class="btn btn-primary">Start Measurement</button>
</div>
</div>
</div>
<div id="navBtns">
<span id="countDownTimer" class="badge badge-danger">0m 0s left</span>
<span id="instructionSpan" class="alert alert-danger">Press the Start Measurement button!</span>
<button id="resetBtn" type="button" class="btn btn-dark">Reset</button>
<button id="download_csv" type="button" class="btn btn-success">Download CSV</button>
</div>
<div id="outerContainer">
<div id="container">
<div id="mycircle">
</div>
<div id="goal">
<p id="goalTitle"><b>Goal</b></p>
</div>
<div id="square">
</div>
<div id="triangle">
<div id="triangle2">
</div>
</div>
<div id="r_triangle">
<div id="r_triangle2">
</div>
</div>
</div>
</div>
<script src="scripts.js"></script>
</body>
</html>