-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.html
62 lines (62 loc) · 1.69 KB
/
run.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
60
61
62
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Run Autotest</title>
<meta
name="description"
content="Accessibility test automation"
>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Run Autotest</h1>
<section class="head">
<h2 class="headText">Introduction</h2>
<p>Autotest runs with instructions from a script and writes a report.</p>
</section>
<section class="etc">
<h2 class="headText">Locations (all answers are required)</h2>
<form method="POST" action="/autotest/run">
<p><label>
<span>Where are your scripts?</span>
<input
name="scriptDir"
type="text"
size="40"
maxlength="60"
value="__scriptDir__"
required
>
</label></p>
<p><label>
<span>Where are your batches?</span>
<input
name="batchDir"
type="text"
size="40"
maxlength="60"
value="__batchDir__"
required
>
</label></p>
<p><label>
<span>Where do you want your reports?</span>
<input
name="reportDir"
type="text"
size="40"
maxlength="60"
value="__reportDir__"
required
>
</label></p>
<p><button>Submit</button></p>
</form>
</section>
</main>
</body>
</html>