-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
113 lines (111 loc) · 3.31 KB
/
popup.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>ez-508</title>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<header>
<h1 style="margin-bottom: 0;">ez-508</h1>
<p class="subtitle">An intuitive, approachable AI-boosted accessibility tool to catch accessibility issues in any stage of your application.</p>
</header>
<main>
<div class="buttons-container">
<button type="button" id="scan">Scan Now</button>
<button type="button" id="about">About</button>
</div>
<div id="results">
<h2>Latest Scan Results</h2>
<span>Click <strong>Scan</strong> or enable auto-scan to view results.</span>
</div>
<h2>Preferences</h2>
<div>
<input type="checkbox" name="auto-scan" id="auto-scan"/>Enable auto-scan on DOM change
</div>
<div>
<input type="checkbox" name="highlight" id="highlight"/>Enable highlighting
</div>
<h2>Accessibility Standards</h2>
<div id="standardsSelectArea">
<div>
<!-- <label for="disabled_for_testing"> -->
<input type="checkbox" name="standard" value="wcag2a" />WCAG 2.0 Level A
<!-- </label> -->
</div>
<div>
<label>
<input
type="checkbox"
name="standard"
value="wcag2aa"
checked="true"
/>WCAG 2.0 Level AA
</label>
</div>
<div>
<label>
<input type="checkbox" name="standard" value="wcag2aaa" />WCAG 2.0
Level AAA
</label>
</div>
<div>
<label>
<input type="checkbox" name="standard" value="wcag21a" />WCAG 2.1
Level A
</label>
</div>
<div>
<label>
<input type="checkbox" name="standard" value="wcag21aa" />WCAG 2.1
Level AA
</label>
</div>
<div>
<label>
<input type="checkbox" name="standard" value="wcag22aa" /><a
href="https://www.w3.org/WAI/standards-guidelines/wcag/new-in-22/"
target="_blank"
>WCAG 2.2 Level AA</a
>
</label>
</div>
<br />
<div>
<label>
<input type="checkbox" name="standard" value="best-practice" />Best
Practice
</label>
</div>
<div>
<label>
<input type="checkbox" name="standard" value="section508" />Section
508
</label>
</div>
<div>
<label>
<input
type="checkbox"
name="standard"
value="experimental"
/>Experimental
</label>
</div>
<div>
<label>
<input
type="checkbox"
name="standard"
value="TTv5"
checked="true"
/><a href="https://www.dhs.gov/trusted-tester" target="_blank"
>Trusted Tester v5</a
>
</label>
</div>
</div>
</main>
<script type="module" src="popup.js"></script>
</body>
</html>