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<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Step 3 - Audit Builder - Equalify</title>
</head>
<body>
<main>
<h1>Audit Builder - Step 2</h1>
<nav aria-label="Breadcrumb">
<ol>
<li><a href="#">Add and Review Pages</a></li>
<li><a href="#" aria-current="page">Set Audit Options</a></li>
</ol>
</nav>
<section>
<form>
<h2>General Info</h2>
<label for="audit_name">Audit Name:</label>
<input id="audit_name" required>
<label for="scan_frequency">Scan Frequency:</label>
<select id="scan_frequency" required>
<option checked>Manually</option>
<option>Daily</option>
<option>Weekly</option>
<option>Monthly</option>
<option>On Monitor Update</option>
</select>
<div role="group" aria-labelledby="email-notifications-heading">
<h4 id="email-notifications-heading">Email Notifications</h4>
<input id="email_summary" type="checkbox">
<label for="email_summary">
Email summary to Lucy Greco, lgreco@berkeley.edu.
</label>
<label for="email_frequency">Email Frequency:</label>
<select id="email_frequency">
<option>Daily</option>
<option>Weekly</option>
<option>Monthly</option>
</select>
</div>
<div role="group" aria-labelledby="screenshots-heading">
<h4 id="screenshots-heading">Screenshots</h4>
<input id="screenshots" type="checkbox">
<label for="screenshots">
Screenshot results from check (premium feature).
</label>
</div>
<button type="button" onclick="window.location.href='8-audit_details-ran.html';">Save & Run Audit</button>
</form>
</section>
</main>
</body>
</html>