-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 1.58 KB
/
index.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>Condition Editor</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<main>
<form id="filtersForm">
<fieldset>
<legend class="screen-reader-only">Available filters</legend>
<select id="propertyFilter">
<option value="">Select a Property</option>
</select>
<select id="operatorFilter" disabled>
<option value="">Select an Operator</option>
</select>
<select id="enumeratedFilter" multiple hidden>
</select>
<input type="text" id="valueFilter" placeholder="Enter the value"
aria-label="Enter the value" hidden>
<input type="hidden" id="propertyType">
</fieldset>
<button aria-label="Clear filters" disabled id="clearButton">Clear</button>
</form>
<section>
<table id="filterResult" role="table" summary="List of Products and their properties">
<caption class="screen-reader-only">Condition Editor Results</caption>
<thead role="rowgroup">
<tr>
<th scope="col">Product Name</th>
<th scope="col">Color</th>
<th scope="col">Weight (oz)</th>
<th scope="col">Category</th>
<th scope="col">Wireless</th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
</main>
<script src="scripts/datastore.js"></script>
<script type="module" src="scripts/index.js"></script>
</body>
</html>