-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
32 lines (30 loc) · 937 Bytes
/
popup.html
File metadata and controls
32 lines (30 loc) · 937 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hera Auth Security Monitor</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<header>
<h1>Hera Auth Monitor</h1>
<div class="controls">
<label class="debug-toggle" title="Enable forensic debug mode for current domain">
<input type="checkbox" id="debugModeToggle">
<span>Debug Mode</span>
</label>
<button id="exportBtn" title="Export evidence">Export</button>
<button id="clearBtn" title="Clear all data">Clear</button>
</div>
</header>
<!-- Simplified Single-Pane Dashboard -->
<div class="dashboard-panel" id="dashboardPanel">
<div class="dashboard-content" id="dashboardContent">
<div class="dashboard-loading">Loading...</div>
</div>
</div>
</div>
<script type="module" src="popup.js"></script>
</body>
</html>