-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
38 lines (33 loc) · 958 Bytes
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Hive++ Options</title>
</head>
<body>
<form id="settings">
<p>
<label>
<input type="checkbox" id="sameTab">
Open in the same tab
</label>
</p>
<p>
<label>
<input type="checkbox" id="removeToilet">
Remove Toilet button
</label>
</p>
<p>
<label>
<input type="number" id="maxWidth" min="0">
If you want to make main site block (everything below the menu) more narrow, pick width in pixel up by taste (I recommend 1200px).
</label>
</p>
<button type="submit">Save</button>
<button type="reset">Reset</button>
<!--<input type="submit" value="Submit" id="save">-->
</form>
<span id="status" style="opacity: 0;">Options saved.</span>
<script src="options.js"></script>
</body>
</html>