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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Single Page Details</title>
</head>
<body>
<aside>
<button id="toggle-navigation" aria-expanded="false">Show Navigation</button>
<nav id="main-navigation" hidden>
<ul>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="issues.html">Issues</a></li>
<li>
<a href="urls.html">URLs</a>
<ul>
<li><a href="urls.html">All URLs</a></li>
<li><a href="nodes.html">Nodes</a></li>
<li><a href="properties.html">Properties</a></li>
</ul>
</li>
<li><a href="scans.html">Scans</a></li>
</ul> </nav>
</aside>
<main>
<section>
<h1>"https://equalify.app" - Equalify Accessibility Scan</h1>
<!-- Demo Step 1: Redirects to page. Use "https://equalify.app" as domain and select "Editora11y" -->
<form action="url_details.html" method="get">
<label for="scan_page">Page URL:</label>
<input id="scan_page" type="url" value="https://equalify.app">
<fieldset>
<legend>Select Scans</legend>
<ul>
<li>
<label>
<input type="checkbox"> axe-core
</label>
</li>
<li>
<label>
<input type="checkbox" checked> Editora11y
</label>
</li>
<li>
<a href="scan_details.html">New Scan</a>
</li>
</ul>
</fieldset>
<button>Scan Again</button>
</form>
</section>
<!-- Demo Step 2: -->
<h1>Details of "https://equalify.app"</h1>
<h2>Last Scanned Page Name</h2>
Equalify - Web Accessibility Testing
<nav aria-label="Secondary">
<h2>Actions</h2>
<button>Watch on Dashboard</button>
<button>Delete URL</button>
<a href="https://equalify.app">Visit URL (External Link)</a> </nav>
<section>
<h2>Overview</h2>
<ul>
<li>Active Nodes: 23 (20 unread)</li>
<li>Equalified Nodes: 122 (5 unread)</li>
<li>Properties: <a href="property_details.html">Sample Property</a>, <a href="property_details.html">Another Property</a></li>
</ul>
</section>
<section>
<h2>Status Density Overtime for Nodes on Page</h2>
<table>
<thead>
<tr>
<th scope="col">Month</th>
<th scope="col">Equalified %</th>
<th scope="col">Active %</th>
<th scope="col">Ignored %</th>
</tr>
</thead>
<tbody>
<tr>
<td>October 2024</td>
<td>38%</td>
<td>60%</td>
<td>2%</td>
</tr>
<tr>
<td>November 2024</td>
<td>40%</td>
<td>58%</td>
<td>2%</td>
</tr>
<tr>
<td>December 2024</td>
<td>50%</td>
<td>48%</td>
<td>2%</td>
</tr>
</tbody>
</table>
</section>
<section>
<h2>Screenshots of Page</h2>
<ul>
<li>
<a href="#">Download Screenshot from 12-02-24</a>
</li>
<li>
<a href="#">Download Screenshot from 12-01-24</a>
</li>
</ul>
</section>
<section>
<h2>Related Scans</h2>
<ul>
<li><a href="scan_details.html">Sample Scan</a></li>
<li><a href="scan_details.html">Another Scan</a></li>
</ul>
</section>
<section>
<h2>Nodes on Page</h2>
<h3>Bulk Actions</h3>
<form>
<fieldset>
<legend>Filter to Show Nodes</legend>
<label>
<input type="checkbox" checked> With Active Status
</label>
<label>
<input type="checkbox" checked> With Ignored Status
</label>
<label>
<input type="checkbox" checked> With Equalified Status
</label>
<label>
<input type="checkbox" checked> With Unread Updates
</label>
</fieldset>
<fieldset>
<legend>Sort By</legend>
<label>
<input type="radio" name="sort" checked> Node Name (A-Z)
</label>
<label>
<input type="radio" name="sort"> Node Name (Z-A)
</label>
<label>
<input type="radio" name="sort"> Date Updated (Newest to Oldest)
</label>
<label>
<input type="radio" name="sort"> Date Updated (Oldest to Newest)
</label>
</fieldset>
<fieldset>
<legend>View Options</legend>
<label>
<input type="checkbox" checked> Show nodes with unread updates first.
</label>
</fieldset>
</form>
<form>
<label>
Search: <input type="text" id="search-input">
</label>
<button type="submit" id="submit-bulk-actions" disabled>Submit</button>
</form>
<div id="edit-options" style="display: none;">
<h3>Edit Options</h3>
<button>Watch on Dashboard</button>
<button>AI Analyze</button>
<button>Mark as Read</button>
</div>
<h3>Nodes Table</h3>
<table>
<thead>
<tr>
<th>
<input type="checkbox" aria-label="Select all nodes" onclick="toggleAllTableCheckboxes(this)">
</th>
<th>Node</th>
<th>Status</th>
<th>Related Issues</th>
<th>Added</th>
<th>Updated</th>
<th>Unread?</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox" class="row-checkbox" onchange="toggleEditOptions()"></td>
<td><a href="node_details.html">Node 4232</a></td>
<td>Active</td>
<td><a href="issue_details.html">Related Issue</a>, <a href="issue_details.html">Another Related Issue</a></td>
<td>12-1-2024</td>
<td>12-2-2024</td>
<td>TRUE</td>
</tr>
<tr>
<td><input type="checkbox" class="row-checkbox" onchange="toggleEditOptions()"></td>
<td><a href="node_details.html">A Named Node</a></td>
<td>Equalified</td>
<td><a href="issue_details.html">Related Issue</a></td>
<td>11-11-2024</td>
<td>12-1-2024</td>
<td>FALSE</td>
</tr>
</tbody>
</table>
<nav aria-label="Nodes Table">
Showing 2 of 2 Nodes <button disabled>Load More Nodes</button>
</nav>
</section>
<section>
<h2>Logged Scans</h2>
<table>
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Date</th>
<th scope="col">Trigger</th>
<th scope="col">Status</th>
<th scope="col">Related Scan</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="scan-log.html?scan=293">293</a></td>
<td>12-2-2024 at 02:42:31</td>
<td>Monitor</td>
<td>Success</td>
<td>
<a href="scan_details.html">Scan Name</a>
</td>
</tr>
<tr>
<td><a href="log_details.html">23</a></td>
<td>12-1-2024 at 11:34:21</td>
<td>User: Blake</td>
<td>Success</td>
<td><a href="scan_details.html">Scan Name</a></td>
</tr>
</tbody>
</table>
<nav aria-label="Scans Table">
Showing 2 of 2 Logged Scans <button disabled>Load More Logs</button>
</nav>
</section>
</main>
<footer>
<nav aria-label="Footer">
<a href="account.html">Account</a>
</nav>
</footer>
<script src="script.js"></script>
</body>
</html>