-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
42 lines (40 loc) · 1003 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
42
<html>
<head>
<title>OScam Chrome Extension Options</title>
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<h1><div id="extNameSettingsLabel"></div></h1>
<hr>
<table border=0>
<tr>
<th align='left'>OSCam Server</th>
<td><input type="text" id="xmlurl" style="width:200px"></td>
</tr>
<tr>
<th align='left'><div id="loginLabel"></div></th>
<td><input type="text" id="username" style="width:200px"></td>
</tr>
<tr>
<th align='left'><div id="passwordLabel"></div></th>
<td><input type="password" id="password" style="width:200px"></td>
</tr>
<tr>
<th align='left'><div id="updateIntervalLabel"></div></th>
<td>
<select id="pollInterval">
<option>10</option>
<option>30</option>
<option>60</option>
<option>120</option>
</select>
</td>
</tr>
<tr>
<th align='left'><div id="beeponerrorLabel"></div></th>
<td><input type="checkbox" id="beeponerror"></td>
</tr>
</table>
<button id="savebutton">Save</button>
</body>
</html>