-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.html
40 lines (31 loc) · 1.11 KB
/
timer.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
<!--© 2021 Sean Murdock-->
<html>
<script src="jquery-3.1.1.min.js"></script>
<script src="timer.js"></script>
<head>
<title>STEDI</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<!--http://getbootstrap.com/getting-started/-->
<link rel="shortcut icon" href= "favicon.ico" type="image/x-icon" />
</head>
<body>
<div style="text-align:center">
<p class="stepcount">STEDI Participant: <a id="email"></a></p>
<p>
<input class="stopwatch" id="stopwatch" value="0:0:0" type="text"><br>
</p>
<p>
<input class="btn-lg btn-primary" id="startandstopbutton" value="Start/Stop" onclick="startandstop();" type="button"><br>
</p>
<p>
<input class="btn-lg btn-primary" id="counterbutton" value="Add Step" onclick="onStep();" type="button"><br>
</p>
<p>
<input class="btn btn-lg btn-primary" id="resetbutton" value="Reset Stopwatch" onclick="resetstopwatch();" type="button"><br>
</p>
<p class="stepcount">Step Count: <a id="clicks">0</a></p>
<p class="stepcount">Risk Score: <a id="score"></a></p>
<p><a class="stepcount" id="logout" href="/">Log Out</a></p>
</div>
</body>
</html>