forked from cracker4o/purge-cf-cache-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (29 loc) · 947 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
<!doctype html>
<html>
<head>
<title>Purge CloudFlare</title>
<script src="jquery-2.1.4.min.js"></script>
<link href="main.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="holder">
<div id="lightbox" class="prompt">
<div class="field text-center">
Purge entire cache?
</div>
<button id="promptYes">Yes</button>
<button id="promptNo">No</button>
</div>
<h2>CFP EXTENSION</h2>
<div class="field text-center">
<label for="refresh">Refresh</label>
<input id="refresh" type="checkbox" checked value="false" />
</div>
<button class="button-group" id="purgeAllButton">Purge Entire Cache</button>
<button class="button-group" id="purgeButton">Purge current page</button>
<div id="status"></div>
<div id="sub-status"></div>
</div>
<script src="popup.js"></script>
</body>
</html>