-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoptions.html
43 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/options.css">
</head>
<body>
<div class="settings">
<div class="input-row">
<div class="redirectEnabled">
<input class="inp-cbx" id="enableRedirects" type="checkbox" style="display: none;" />
<label class="cbx" for="enableRedirects">
<span>
<svg width="14px" height="10px" viewbox="0 0 12 10">
<polyline points="1.5 6 4.5 9 10.5 1"></polyline>
</svg>
</span>
<span>Enable Redirects</span>
</label>
</div>
<div class="strictModeEnabled">
<input class="inp-cbx" id="enableStrictMode" type="checkbox" style="display: none;" />
<label class="cbx" for="enableStrictMode">
<span>
<svg width="15px" height="10px" viewbox="0 0 12 10">
<polyline points="1.5 6 4.5 9 10.5 1"></polyline>
</svg>
</span>
<span>Strict Mode</span>
</label>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/options.js"></script>
</body>
</html>