-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
42 lines (36 loc) · 1.18 KB
/
options.html
File metadata and controls
42 lines (36 loc) · 1.18 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UI Debug Teacher Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<main class="settings">
<h1>UI Debug Teacher Options</h1>
<label class="field">
<span>Mode</span>
<select id="mode">
<option value="beginner">Beginner</option>
<option value="strict">Strict</option>
</select>
</label>
<label class="field">
<span>Minimum readable font size</span>
<input id="minimumFontSize" type="number" min="12" max="18" step="1">
</label>
<label class="check-field">
<input id="showAllIssues" type="checkbox">
<span>Show more issues in each scan</span>
</label>
<label class="check-field">
<input id="hideLowConfidence" type="checkbox">
<span>Hide low-confidence findings</span>
</label>
<p id="status" class="status" aria-live="polite"></p>
<button id="saveButton" type="button">Save options</button>
</main>
<script src="options.js"></script>
</body>
</html>