-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
23 lines (23 loc) · 1.02 KB
/
options.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en-nz">
<head>
<title>WCAG EM Helpers Options</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body class="wcag-em-helpers-options">
<fieldset class="wcag-em-helpers-options__options">
<legend class="wcag-em-helpers-options__legend">Options</legend>
<div class="wcag-em-helpers-options__option">
<label>
<input type="checkbox" id="show-expand-controls" />
Show additional expand controls
</label>
<p class="wcag-em-helpers-options__tip" id="show-expand-controls-description">Provides controls to expand all panels or textareas</p>
</div>
</fieldset>
<div class="wcag-em-helpers-options__status" role="region" aria-live="polite" id="status"></div>
<button class="wcag-em-helpers-options__submit" type="button" id="save">Save</button>
<script src="options.js"></script>
</body>
</html>