-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblacklist.html
56 lines (42 loc) · 1.54 KB
/
blacklist.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
<!DOCTYPE html>
<html>
<head>
<title>XF User Tools - Settings</title>
<meta charset="UTF-8">
<script src="js/content-scripts/jquery-3.4.1.min.js"></script>
<script src="js/options-app.js"></script>
<script src="js/translations.js"></script>
<script src="js/translate-ui.js"></script>
<link href="css/global.css" rel="stylesheet" />
<link href="css/form.css" rel="stylesheet" />
<link href="css/page-styles.css" rel="stylesheet" />
</head>
<body class="options">
<div class="page options">
<header class="page-header">
<h1>XF User Tools - Settings</h1>
</header>
<div class="blocking-status"><div id="toggle-blocking-mode" title="Click to Change"></div></div>
<div class="main-nav">
<ul>
<li class="current"><a href="blacklist.html">Blacklist</a></li>
<li><a href="whitelist.html">Whitelist</a></li>
</ul>
</div>
<main class="page-main">
<form name="options">
<div class="form-field mode">
<label>Blocked Users</label>
<p>This will remove any content from the blocked users so you will not be able to see it. The content will
still be visible to other members though.</p>
<p>Enter the username of the member whose content you do not want to see:</p>
<table id="blocked-users" class="usernames-table"></table>
</div>
</form>
</main>
<footer class="page-footer">
© <a href="https://www.AntzCode.com" target="_blank">www.AntzCode.com</a>
</footer>
</div>
</body>
</html>