-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (43 loc) · 1.84 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!-- popup.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GhostHunter</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div id="header">
<img src="icons/GhostHunter.png" alt="Logo" id="logo">
<span id="title">GhostHunter</span>
</div>
<div id="buttons">
<button id="clearButton" class="btn btn-outline-primary me-1">Clear</button>
<button id="copyButton" class="btn btn-outline-primary me-1">Copy</button>
<span id="copy-confirmation" class="copy-confirmation">👍</span>
</div>
<div id="buttons">
<button id="settingsButton" class="btn btn-outline-success me-1">API</button>
<button id="uploadButton" class="btn btn-outline-success" disabled>Upload</button>
<span id="upload-confirmation" class="upload-confirmation" style="display: none;">👍</span>
<span id="upload-no-bueno" class="upload-no-bueno" style="display: none;">👎</span>
</div>
<div id="apiSettings" style="display:none;">
<form>
<div class="form-group">
<label for="webServerAddress">KineticLull Address:</label><br>
<input type="text" id="webServerAddress" class="form-control" placeholder="http://127.0.0.1:8080">
</div>
<div class="form-group">
<label for="apiKeyInput">API Key:</label><br>
<input type="text" id="apiKeyInput" class="form-control" placeholder="API Key">
</div>
<button type="button" id="saveSettings" class="btn btn-outline-primary mt-4">Save</button>
</form>
</div>
<div id="domain-list"></div>
<script src="popup.js"></script>
</body>
</html>