-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings_ui.html
58 lines (56 loc) · 1.68 KB
/
settings_ui.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link href="common.css" rel="stylesheet" type="text/css"/>
<link href="settings_ui.css" rel="stylesheet" type="text/css"/>
<meta charset="UTF-8"/>
<title>Settings</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Setting</th>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><label for="decimal_point_character">Decimal Point</label></td>
<td>
<input type="text" id="decimal_point_character"/>
</td>
<td>Must not be a digit character, must differ from thousands separator</td>
</tr>
<tr>
<td><label for="thousands_separator">Thousands Separator</label></td>
<td>
<input type="text" id="thousands_separator"/>
</td>
<td>Must not be a digit character, must differ from decimal point</td>
</tr>
<tr>
<td><label for="tab_width">Tab Width</label></td>
<td>
<input type="text" id="tab_width"/>
</td>
<td>Must be a whole number greater than 0</td>
</tr>
<tr>
<td><label for="check_for_updates">Check for Updates</label></td>
<td>
<input type="checkbox" id="check_for_updates"/>
</td>
<td>Automatically check for updated app version</td>
</tr>
</tbody>
</table>
<div id="buttons">
<button id="ok">OK</button>
<button id="defaults">Defaults</button>
<button id="cancel">Cancel</button>
</div>
<script src="src/settings_ui.js"></script>
</body>
</html>