-
Notifications
You must be signed in to change notification settings - Fork 1
/
blacklist.html
90 lines (81 loc) · 3.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="author" content="">
<title>Pi-Hole Extension</title>
<!-- Cascading Style Sheets -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/custom.css" rel="stylesheet" media="screen">
<style type="text/css">
body {
min-width: 300px;
min-height: 500px;
/* overflow: hidden; */
}
</style>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="popup.html">Pi-Hole</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class=""><a href="popup.html">Add</a></li>
<li class=""><a href="whitelist.html">WhiteList</a></li>
<li class="active"><a href="blacklist.html">BlackList</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Settings <b class="caret"></b></a>
<ul class="dropdown-menu">
<li class="dropdown-header">Settings</li>
<li><a href="settings.html">Extension Settings</a></li>
<li><a href="#">Your Pi-Hole Admin</a></li>
<li><a href="#">About this Extension...</a></li>
<li class="dropdown-header">Other Links</li>
<li><a href="#">Pi-Hole Website</a></li>
<li><a href="#">Pi-Hole Help</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-12" style="height:50px;"></div>
</div>
<div class="row">
<div class="col-10 col-offset-1">
<div class="panel panel-danger">
<div class="panel-heading">
<button name="getblacklist" id="getblacklist" class="btn btn-default btn-xs pull-right">
<span class="glyphicon glyphicon-refresh" aria-hidden="true"></span>
Refresh Blacklist
</button>
Blacklist Entries
</div>
<div class="panel-body">
<form action="#" method="POST">
<input id="piholeurl" name="piholeurl" type="hidden" value="">
<input id="piholekey" name="piholekey" type="hidden" value="">
<fieldset id="domain-list-group" class="form-group">
<label for="blackdomainlist"><strong>Remove Blacklist Entry:</strong></label>
<select id="blackdomainlist" class="form-control" name="blackdomainlist" disabled></select>
<errors will go here>
</fieldset>
<fieldset class="form-group">
<button type="submit" class="btn btn-danger pull-right">Remove Entry <span class="fa fa-arrow-right"></span></button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
<!-- Scripts -->
<script src="js/jquery-2.0.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/blacklist.js"></script>
</html>