-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7-audit_builder-name_and_frequency.html
55 lines (55 loc) · 2.09 KB
/
7-audit_builder-name_and_frequency.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
<!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 3</h1>
<nav aria-label="Audit Builder Progress">
Progress:
<ul>
<li><a href="#">Step 1</a></li>
<li><a href="#">Step 2</a></li>
<li><a href="#" aria-current="page">Step 3</a></li>
</ul>
</nav>
<section>
<form>
<h3>General Info</h3>
<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>
<fieldset>
<legend>Email Notifications</legend>
<label>
<input type="checkbox"> 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>
</fieldset>
<fieldset>
<legend>Screenshots</legend>
<label>
<input type="checkbox" disabled> Screenshot results from check (premium feature).
</label>
</fieldset>
<button type="button" onclick="window.location.href='8-audit_details-ran.html';">Save & Run Audit</button>
</form>
</section>
</main>
</body>
</html>