-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
41 lines (36 loc) · 990 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
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Check Periodically Options</title>
<script src="library/jquery-3.5.1.min.js"></script>
<stylee type="text/css">
<!--
.tabulator-row .tabulator-cell {
height: 2em;
};
div {
display: inline-block;
};
--></style>
<link href="library/tabulator.min.css" rel="stylesheet">
<script src="library/moment.min.js"></script>
<script src="library/tabulator.min.js"></script>
<meta charset="utf-8">
</head>
<body>
<h1>Page List</h1>
<div>
<button id="add">Add New Row</button>
<button id="delete">Delete Row</button>
</div>
<div id="grid-view"></div>
<h1>Interval Menu List</h1>
<div>
<select id="interval_list" size=10 style="width:10em">
</select>
<button id="delete_interval">Delete</button>
</div>
<div><input id="interval_input" style="width:9.5em"> <button id="add_interval">Add</button></div>
<script src="options.js"></script>
</body>
</html>