-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
39 lines (36 loc) · 1.19 KB
/
options.html
File metadata and controls
39 lines (36 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Focus Blocker Settings</title>
<link rel="stylesheet" href="options.css" />
</head>
<body>
<main class="layout">
<h1>Advanced Settings</h1>
<p>Use popup for daily controls. This page is for less-frequent setup.</p>
<form id="settingsForm">
<section>
<h2>Blocked Page Copy</h2>
<p class="hint">Customize the message shown when an analytics page is blocked.</p>
<label>
Title
<input type="text" id="blockedTitle" maxlength="80" />
</label>
<label>
Message
<textarea id="blockedMessage" rows="4" maxlength="220"></textarea>
</label>
</section>
<div class="actions">
<button type="submit">Save</button>
<button id="resetDefaults" type="button" class="secondary">Reset defaults</button>
<span id="savedState" aria-live="polite"></span>
</div>
</form>
</main>
<script src="config.js"></script>
<script src="options.js"></script>
</body>
</html>