-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="style.css">
<script src="script/jquery-3.3.1.min.js"></script>
<script src="script/lodash.min.js"></script>
<script src="script/app.js"></script>
</head>
<body>
<div>
<button class="hide cancel-button toggle" onclick="cancelPending()">Cancel Pending Tests</button>
<p class="status hide toggle"></p>
</div>
<div id="container">
<div id="overlay" class="toggle hide"></div>
<input class="fileUpload" type="file" id="file" name="file" multiple>
<div class="checkbox-set">
<input type="checkbox" name="wpt_agent_north_virginia_wptdriver" value="wpt_agent_north_virginia_wptdriver">
<label>N. Virginia</label>
<input type="checkbox" name="wpt_agent_oregon_wptdriver" value="wpt_agent_oregon_wptdriver">
<label>Oregon</label>
<input type="checkbox" name="agent_california_wptdriver" value="agent_california_wptdriver">
<label>California</label>
<input type="checkbox" name="agent_ohio_wptdriver" value="agent_ohio_wptdriver">
<label>Ohio</label>
</div>
<button class="hit-button" onclick="hitServer()">Submit</button>
<div class="loader hide toggle" ></div>
</div>
</body>
</html>