blob: 11e132a096fc4f810fc50cc8936adb699b841953 (
plain) (
blame)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bookmarks Home</title>
</head>
<body>
<div id="settings-menu">
<h2>Settings</h2>
<h3>Sort</h3>
<label>
<input type="radio" name="sort">
From bookmarks
</label>
<label>
<input type="radio" name="sort">
Alphabetical
</label>
<label>
<input type="radio" name="sort">
Frequency
</label>
<h3>Background</h3>
<label>
<input type="radio" name="bg">
From Theme
</label>
<label>
<input type="radio" name="bg">
Solid color
</label>
<label>
<input type="radio" name="bg">
Image
</label>
<h3>Root folder</h3>
<label>
<select>
<option>Bookmarks Toolbar id:0</option>
<option>Mobile Bookmarks id:1</option>
<option>Other Bookmarks id:2</option>
</select>
</label>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
|