-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
31 lines (28 loc) · 916 Bytes
/
Copy pathoptions.html
File metadata and controls
31 lines (28 loc) · 916 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="options.css">
</head>
<body>
<form class="style-1">
<fieldset>
<legend>Options</legend>
<div class="">
<label>Close tab after: </label>
<input type="number" id="minutes" min="0"/> minutes -
<input type="number" id="hours" min="0"/> hours -
<input type="number" id="days" min="0"/> days
</div>
<br />
<div class="">
<label>Check to close tabs: </label>
<input type="number" id="intervalCheck" /> minutes
</div>
<br />
<button type="submit">Save</button>
</fieldset>
</form>
<script src="options.js"></script>
</body>
</html>