forked from pages-themes/cayman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
59 lines (51 loc) · 1.92 KB
/
test.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Run batch tests on humans for Formula Student entry tests."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Race UP | Yentl</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css?">
<link rel="icon" type="image/png" href="logo_small.png">
</head>
<body>
<div id="testHeader">
<section class="test-header">
<table style="width:40%" align="center">
<tr>
<th id="resumePauseCell"><a onclick="pauseTest();"
id="startPauseAttemptButton"
class="btn">Pause</a></th>
<th><a class="btn">Total</a></th>
<th><a class="btn">Question</a></th>
</tr>
<tr>
<td><a onclick="abortTest();" id="endAttemptButton"
class="btn">Abort</a></td>
<td><a id="totalTimer" class="btn">00:00</a></td>
<td><a id="questionTimer" class="btn">00:00</a></td>
</tr>
</table>
</section>
</div>
<section class="main-content test-content" id="test-canvas">
</section>
<footer class="site-footer">
<span class="site-footer-owner"><a
href="https://github.com/raceup/yentl">yentl</a> is maintained by <a
href="https://github.com/raceup">raceup</a>.</span>
<br>
<br>
</footer>
</body>
<!-- loads these scripts when page has done loading -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- page specific scripts -->
<script src="js/utils.js"></script>
<script src="js/localStorage.js"></script>
<script src="js/test.js"></script>
</html>