-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 990 Bytes
/
index.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 lang="en">
<head>
<meta charset="UTF-8">
<title>Options</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<h1>TemporaryBookmarks Options</h1>
<div id="box">
<div class="row">
<form name="formCheck">
<label>Disable delete bookmarks at browser start:
<input type="checkbox" name="disable" value="">
</label>
</form>
</div><!-- end .row -->
<div class="row">
<form name="formNumber">
<label>Expiration day:
<input name="expiration" type="number" min="1" max="">
</label>
</form>
</div><!-- end .row -->
<div class="row">
<label>
Delete expired bookmarks (<span id="count">0</span>):
<button id="delete-button">delete</button>
</label>
</div><!-- end .row -->
</div><!-- #box -->
<script src="js/bookmarks.js"></script>
<script src="js/options.js"></script>
</body>
</html>