-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
32 lines (31 loc) · 886 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 300px;
height: auto;
padding: 10px;
font-family: Arial, sans-serif;
}
input[type='number'] {
width: 80px;
}
</style>
</head>
<body>
<h3>Zoom levels:</h3>
<p>(If you'd only like to toggle between 2 levels, use -1 as the 3rd level.)</p>
<form id="zoomForm">
<label for="zoom1">Zoom 1:</label>
<input type="number" id="zoom1" min="-1" max="500" required /><br />
<label for="zoom2">Zoom 2:</label>
<input type="number" id="zoom2" min="-1" max="500" required /><br />
<label for="zoom3">Zoom 3:</label>
<input type="number" id="zoom3" min="-1" max="500" required /><br />
<button type="submit">Save</button>
</form>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>