aboutsummaryrefslogtreecommitdiffstats
path: root/options.html
blob: 3b3033e7886f1109b2138473feca5a3966095399 (plain)
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
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
	<title>Timetasker Options</title>
</head>

<body>
	<table>
		<tr>
			<td>
				<label for="client">Client:</label>
			</td>
			<td>
				<input type="text" id="client" name="client" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="project">Project:</label>
			</td>
			<td>
				<input type="text" id="project" name="project" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="module">Module:</label>
			</td>
			<td>
				<input type="text" id="module" name="module" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="task">Task:</label>
			</td>
			<td>
				<input type="text" id="task" name="task" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="work_type">Work Type:</label>
			</td>
			<td>
				<input type="text" id="work_type" name="work_type" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="time">Time:</label>
			</td>
			<td>
				<input type="text" id="time" name="time" />
			</td>
		</tr>

		<tr>
			<td>
				<label for="billable">Billable:</label>
			</td>
			<td>
				<input type="checkbox" id="billable" name="billable" />
			</td>
		</tr>
	</table>

	<div id="status"></div>
	<button id="save">Save</button>

	<script src="options.js"></script>
</body>
</html>