-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoptions.html
46 lines (46 loc) · 1.42 KB
/
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
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHPHub Notifier - Options</title>
<link rel='stylesheet' href='options.css' type='text/css' media='all' />
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<div id="wrapper">
<h3>PHPHub Notifier → Options</h3>
<div>
<table>
<thead>
<tr>
<th colspan='2'>Features list</th>
</tr>
</thead>
<tbody>
<tr id='feature-2'>
<th rowspan='2'>Show notifications number</th>
<td>
<label>Enable <input type='checkbox' id='feature-2-enable'>
</td>
</tr>
<tr id="feature-2-options">
<td>
<label> Update every
<select id='feature-2-interval'>
<option value='' disabled selected>Please Choose</option>
<option value='1'>1 min</option>
<option value='5'>5 mins</option>
<option value='10'>10 mins</option>
<option value='30'>30 mins</option>
<option value='60'>1 hour</option>
</select>
</label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>