-
Notifications
You must be signed in to change notification settings - Fork 3
/
options.html
51 lines (42 loc) · 1.43 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>aero</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/styles/master.css" />
<link rel="stylesheet" href="/styles/options.css" />
</head>
<body>
<h3>Title</h3>
<input type="textbox" id="title" />
<h3>Colorway</h3>
<label for="bg">Primary</label>
<input type="color" id="bg" />
<label for="fg">Secondary</label>
<input type="color" id="fg" />
<button id="clear" name="reset">Revert</button>
<h3>Search Engine</h3>
<select id="search-dropdown">
<option disabled selected value>Choose a search engine</option>
<option value="google">Google</option>
<option value="ddg">DuckDuckGo</option>
<option value="brave">Brave</option>
<option value="qwant">Qwant</option>
</select>
<h3>Transport</h3>
<select id="transport-dropdown">
<option disabled selected value>Choose a Transport</option>
<option value="/libcurl/index.mjs">Libcurl</option>
<option value="/epoxy/index.mjs">Epoxy</option>
<option value="/baremod/index.mjs">Bare Client</option>
</select>
<h3>Wisp URL</h3>
<input type="textbox" id="wisp-url" />
<h3>Bare URL</h3>
<input type="textbox" id="bare-url" />
<script src="/scripts/options.js"></script>
<script type="module" src="/scripts/init.js"></script>
<script type="module" src="/scripts/sdk/proxyHref.js"></script>
</body>
</html>