-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.html
59 lines (54 loc) · 1.4 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
52
53
54
55
56
57
58
59
<!doctype html>
<html>
<head>
<title>Filters</title>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>
<body>
<div class='password-text'>
password: <input type="password" style="width:30;" id="password"/>
</div>
<div class='center blur img'>
<img src='Distill.png' width='100' height='20'>
</div>
<div class='under-center blur img'>
<img src='A_Better_Internet.png' width='150' height='10'>
</div>
<div class='push-down'>
<label>
<br>
<div class='mid'>
<img src='Censors.png' width='85' height='20'>
</div>
<br>
<input type="checkbox" id="gore">
blood & gore<br>
<input type="checkbox" id="bugs">
spiders<br>
<input type="checkbox" id="nsfw">
sexually explicit<br>
<input type="checkbox" id="self-harm">
self-harm<br>
<input type="checkbox" id="drugs">
drug paraphernalia<br>
<input type="checkbox" id="war">
warfare/weapons<br>
<input type="checkbox" id="scary">
scary<br>
<input type="checkbox" id="suicide">
suicide<br>
<input type="checkbox" id="swears">
swearing<br>
<input type="checkbox" id="slurs">
slurs<br>
</label><br>
Bans: <input type="text" id="bans"><br><br>
<div id="status"></div><br><br>
<div class='save-btn'>
<button id="save">Save</button>
</div>
</div>
<script src="aes-min.js"></script>
<script src="options.js"></script>
</body>
</html>