-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 1.78 KB
/
index.html
File metadata and controls
74 lines (65 loc) · 1.78 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ActivityWatch settings</title>
<link href="./style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form>
<div>
<label for="browser">
<strong>Browser:</strong>
</label>
<select id="browser" name="browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="opera">Opera</option>
<option value="brave">Brave</option>
<option value="edge">Edge</option>
<option value="arc">Arc</option>
<option value="vivaldi">Vivaldi</option>
<option value="orion">Orion</option>
<option value="yandex">Yandex</option>
<option value="zen">Zen</option>
<option value="other">Other...</option>
</select>
<input
type="text"
id="customBrowser"
name="customBrowser"
pattern="[a-z]*"
placeholder="Custom browser name"
/>
</div>
<div>
<label for="hostname">
<strong>Hostname:</strong>
</label>
<input
type="text"
id="hostname"
name="hostname"
pattern="[a-zA-Z0-9_.\-]*"
required
/>
</div>
<div>
<label for="profileName">
<strong>Profile Name:</strong>
</label>
<input
type="text"
id="profileName"
name="profileName"
pattern="[a-zA-Z0-9_.\- ]*"
placeholder="Custom profile name (optional)"
/>
</div>
<div>
<button type="submit">Save</button>
</div>
</form>
<script type="module" src="./main.ts"></script>
</body>
</html>