-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
30 lines (25 loc) · 1018 Bytes
/
popup.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
<html>
<head>
<link rel="stylesheet" href="popup.css">
<title>IP Blocker</title>
</head>
<body>
<div class="container">
<div class="flex flex-col">
<div class="flex" id="privateIPContainer">
<input type="checkbox" id="privateIpCheckbox">
<p id="enablePrivateIps">Enable Private IPs?</p>
</div>
<div class="flex flex-col gap-y-4">
<ul id="allowedIpList" class="flex flex-col"></ul>
<form id="newIpForm">
<input type="text" id="newIpInput" placeholder="Add new allowed IP">
<input type="submit" id="newIpSubmit" class="btn submitBtn">
</form>
<p id="errorMessage"></p>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>