-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
40 lines (40 loc) · 1006 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
<!DOCTYPE html>
<html>
<head>
<title>GW2 Guild Activity Options</title>
<style>
body {
font-family:helvetica, arial, sans-serif;
font-size: 90%;
}
</style>
</head>
<body>
<h1>Guild Activity - Options</h1>
<table>
<tr>
<td>
Color-code column:
</td>
<td>
<input type="checkbox" id="highlight">
</td>
</tr>
<tr>
<td>
Inactivity threshold (days):
</td>
<td>
<input type="text" id="threshold" size="4">
</td>
</tr>
<tr>
<td id="message"></td>
<td>
<button id="save">Save</button>
</td>
</tr>
</table>
<script src="js/options.js"></script>
</body>
</html>