forked from cracker4o/purge-cf-cache-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
40 lines (35 loc) · 832 Bytes
/
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
<!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="group">
<div class="field">
<label for="refresh">
Refresh T/O:
</label>
<input type="text" id="refresh" placeholder="Timeout in seconds" />
</div>
</div>
<div class="group">
<div class="field">
<label for="email">
E-mail:
</label>
<input type="text" id="email" placeholder="CloudFlare profile e-mail" />
</div>
<div class="field">
<label for="key">
Api Key:
</label>
<input type="text" id="key" placeholder="CloudFlare API key" />
</div>
</div>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>