-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
70 lines (62 loc) · 2.19 KB
/
settings.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='./style.css'>
<script src="./settings.js"></script>
</head>
<body>
<div class="optionRow">
<div class="optionLabel">Start on login</div>
<div class="optionValues">
<label class="switch">
<input type="checkbox" id="autoLaunch" />
<span class="slider round"></span>
</label>
</div>
</div>
<div class="optionRow">
<div class="optionLabel">Time format</div>
<div class="optionValues">
<label><input type="radio" name="timeFormat" id="timeFormat_12" value="12" /> 12-hour (1:37 PM)</label>
<label><input type="radio" name="timeFormat" id="timeFormat_24" value="24" /> 24-hour (13:37)</label>
</div>
</div>
<div class="optionRow">
<div class="optionLabel">Offset display</div>
<div class="optionValues">
<label><input type="radio" name="offsetDisplay" id="offsetDisplay_utc" value="utc" /> Relative to UTC. (UTC+0530)</label>
<label><input type="radio" name="offsetDisplay" id="offsetDisplay_local" value="local" /> Relative to Local. (Local+0930)</label>
<label><input type="radio" name="offsetDisplay" id="offsetDisplay_both" value="both" /> Display both. (UTC+0530, Local+0930)</label>
<label><input type="radio" name="offsetDisplay" id="offsetDisplay_none" value="none" /> Do not display offset.</label>
</div>
</div>
<div class="optionRow">
<table id="timezoneTable">
<tbody>
<tr>
<th>Time zones</th>
<th>Label</th>
<th></th>
</tr>
<!--
<tr class="timezoneRow" id="UTC">
<td class="timezoneName">UTC</td>
<td><input type="text" class="timezoneLabel" value="UTC Label" /></td>
<td><button class="removeTimezone">Remove</button></td>
</tr>
-->
</tbody>
</table>
</div>
<div class="optionRow">
<div class="optionLabel">Add time zone</div>
<div class="optionValues">
<select id="addTimeZone">
<option selected></option>
<!-- <option value="America/New_York">America/New_York (UTC-0400)</option> -->
</select>
</div>
</div>
<div id="debug"></div>
</body>
</html>