37039351be
- wireguard: POST /peers with JSON encoding (was /add-peer) - rules: delete by rule_id in URL path (was JSON body); pass rule objects with id from server; add hx-disable to initial render - nat: port forward delete uses URL path params to match blueprint - nat: masquerade toggle uses native hx-post/hx-vals (was inline fetch) - app.js renderers updated to use URL path deletes for rules and forwards - remove TODO.md
598 lines
16 KiB
HTML
598 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}Vacuum Wall{% endblock %}</title>
|
|
<style>
|
|
:root {
|
|
--bg-primary: #1a1a2e;
|
|
--bg-secondary: #16213e;
|
|
--bg-card: #0f3460;
|
|
--bg-card-hover: #0f3460d0;
|
|
--accent: #00b4d8;
|
|
--accent-hover: #0096c7;
|
|
--text: #e0e0e0;
|
|
--text-muted: #888;
|
|
--danger: #e63946;
|
|
--danger-hover: #c62828;
|
|
--success: #2ecc71;
|
|
--warning: #f1c40f;
|
|
--border: #1a1a3e;
|
|
--input-bg: #0d1b2a;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
background: var(--bg-primary);
|
|
color: var(--text);
|
|
display: flex;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Sidebar */
|
|
.sidebar {
|
|
width: 220px;
|
|
background: var(--bg-secondary);
|
|
border-right: 1px solid var(--border);
|
|
padding: 0;
|
|
flex-shrink: 0;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
overflow-y: auto;
|
|
z-index: 100;
|
|
}
|
|
|
|
.sidebar-header {
|
|
padding: 20px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.sidebar-header span {
|
|
color: var(--text-muted);
|
|
font-weight: 400;
|
|
font-size: 11px;
|
|
display: block;
|
|
margin-top: 2px;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.sidebar nav {
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.sidebar nav a {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px 20px;
|
|
color: var(--text-muted);
|
|
text-decoration: none;
|
|
font-size: 13.5px;
|
|
transition: all 0.15s ease;
|
|
border-left: 3px solid transparent;
|
|
}
|
|
|
|
.sidebar nav a:hover {
|
|
color: var(--text);
|
|
background: rgba(0, 180, 216, 0.05);
|
|
}
|
|
|
|
.sidebar nav a.active {
|
|
color: var(--accent);
|
|
background: rgba(0, 180, 216, 0.08);
|
|
border-left-color: var(--accent);
|
|
}
|
|
|
|
/* Main */
|
|
.main {
|
|
margin-left: 220px;
|
|
flex: 1;
|
|
padding: 24px 32px;
|
|
min-height: 100vh;
|
|
width: calc(100vw - 220px);
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.page-header .subtitle {
|
|
color: var(--text-muted);
|
|
font-size: 13px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Cards */
|
|
.card {
|
|
background: var(--bg-card);
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin-bottom: 16px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.card h3 {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
margin-bottom: 12px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
|
|
gap: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.stat-card {
|
|
background: var(--bg-card);
|
|
border-radius: 8px;
|
|
padding: 18px 20px;
|
|
border: 1px solid var(--border);
|
|
}
|
|
|
|
.stat-card .label {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.stat-card .value {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
margin-top: 6px;
|
|
color: var(--accent);
|
|
}
|
|
|
|
.stat-card .meta {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
margin-top: 4px;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--accent);
|
|
color: #000;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--accent-hover);
|
|
}
|
|
|
|
.btn-danger {
|
|
background: var(--danger);
|
|
color: #fff;
|
|
}
|
|
|
|
.btn-danger:hover {
|
|
background: var(--danger-hover);
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 5px 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
color: var(--accent);
|
|
border: 1px solid var(--accent);
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: rgba(0, 180, 216, 0.1);
|
|
}
|
|
|
|
/* Tables */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th, td {
|
|
padding: 10px 14px;
|
|
text-align: left;
|
|
border-bottom: 1px solid var(--border);
|
|
font-size: 13px;
|
|
}
|
|
|
|
th {
|
|
color: var(--text-muted);
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
tr:hover td {
|
|
background: rgba(0, 180, 216, 0.03);
|
|
}
|
|
|
|
/* Forms */
|
|
.form-group {
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 5px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="number"],
|
|
input[type="email"],
|
|
input[type="password"],
|
|
input[type="url"],
|
|
select,
|
|
textarea {
|
|
width: 100%;
|
|
padding: 8px 12px;
|
|
background: var(--input-bg);
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
color: var(--text);
|
|
font-size: 13px;
|
|
font-family: inherit;
|
|
outline: none;
|
|
transition: border-color 0.15s;
|
|
}
|
|
|
|
input:focus,
|
|
select:focus,
|
|
textarea:focus {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
min-height: 80px;
|
|
}
|
|
|
|
select {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Badges */
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 3px 8px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.badge-success { background: rgba(46, 204, 113, 0.15); color: var(--success); }
|
|
.badge-warning { background: rgba(241, 196, 15, 0.15); color: var(--warning); }
|
|
.badge-danger { background: rgba(230, 57, 70, 0.15); color: var(--danger); }
|
|
.badge-info { background: rgba(0, 180, 216, 0.15); color: var(--accent); }
|
|
|
|
/* Status indicator */
|
|
.status-dot {
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.status-up { background: var(--success); }
|
|
.status-down { background: var(--danger); }
|
|
.status-pending { background: var(--warning); }
|
|
|
|
/* Modal */
|
|
.modal-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 200;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-overlay.active {
|
|
display: flex;
|
|
}
|
|
|
|
.modal {
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
padding: 24px;
|
|
width: 90%;
|
|
max-width: 480px;
|
|
max-height: 80vh;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.modal h2 {
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
margin-top: 18px;
|
|
}
|
|
|
|
/* Toast */
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 16px;
|
|
right: 16px;
|
|
z-index: 300;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.toast {
|
|
padding: 12px 18px;
|
|
border-radius: 8px;
|
|
font-size: 13px;
|
|
min-width: 250px;
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
|
opacity: 0;
|
|
transform: translateX(20px);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.toast.show {
|
|
opacity: 1;
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.toast-success { background: #0d3b2e; border: 1px solid var(--success); color: var(--success); }
|
|
.toast-error { background: #3b0d0d; border: 1px solid var(--danger); color: var(--danger); }
|
|
.toast-warning { background: #3b3408; border: 1px solid var(--warning); color: var(--warning); }
|
|
|
|
/* Tabs */
|
|
.tabs {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--border);
|
|
margin-bottom: 16px;
|
|
gap: 0;
|
|
}
|
|
|
|
.tab {
|
|
padding: 10px 18px;
|
|
font-size: 13px;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
margin-bottom: -1px;
|
|
background: none;
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.tab:hover { color: var(--text); }
|
|
|
|
.tab.active {
|
|
color: var(--accent);
|
|
border-bottom-color: var(--accent);
|
|
}
|
|
|
|
.tab-content { display: none; }
|
|
.tab-content.active { display: block; }
|
|
|
|
/* Scrollable log */
|
|
.log-viewer {
|
|
background: #0a0a14;
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
|
|
font-size: 12px;
|
|
line-height: 1.6;
|
|
max-height: 600px;
|
|
overflow-y: auto;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
color: var(--text);
|
|
}
|
|
|
|
/* Toggle switch */
|
|
.switch {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 22px;
|
|
}
|
|
|
|
.switch input {
|
|
opacity: 0;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.switch .slider {
|
|
position: absolute;
|
|
cursor: pointer;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background: var(--border);
|
|
border-radius: 22px;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
.switch .slider:before {
|
|
content: "";
|
|
position: absolute;
|
|
height: 16px;
|
|
width: 16px;
|
|
left: 3px;
|
|
bottom: 3px;
|
|
background: var(--text);
|
|
border-radius: 50%;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
.switch input:checked + .slider {
|
|
background: var(--accent);
|
|
}
|
|
|
|
.switch input:checked + .slider:before {
|
|
transform: translateX(18px);
|
|
}
|
|
|
|
/* Flex utils */
|
|
.flex { display: flex; }
|
|
.flex-col { flex-direction: column; }
|
|
.items-center { align-items: center; }
|
|
.justify-between { justify-content: space-between; }
|
|
.gap-2 { gap: 8px; }
|
|
.gap-4 { gap: 16px; }
|
|
.mt-2 { margin-top: 8px; }
|
|
.mt-4 { margin-top: 16px; }
|
|
.mb-4 { margin-bottom: 16px; }
|
|
.text-muted { color: var(--text-muted); }
|
|
.text-sm { font-size: 12px; }
|
|
.text-right { text-align: right; }
|
|
.w-full { width: 100%; }
|
|
|
|
/* Service status list */
|
|
.service-list {
|
|
list-style: none;
|
|
}
|
|
|
|
.service-list li {
|
|
padding: 6px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.service-list .svc-name {
|
|
flex: 1;
|
|
}
|
|
|
|
/* Inline form row */
|
|
.inline-form {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: flex-end;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.inline-form .form-group {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* Section titles */
|
|
.section-title {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
margin-bottom: 12px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.section-title:first-child { margin-top: 0; }
|
|
|
|
/* Auto-refresh indicator */
|
|
.htmx-indicator {
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
.htmx-request .htmx-indicator {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.sidebar {
|
|
display: none;
|
|
}
|
|
.main {
|
|
margin-left: 0;
|
|
width: 100vw;
|
|
padding: 16px;
|
|
}
|
|
.card-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.inline-form {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<aside class="sidebar">
|
|
<div class="sidebar-header">
|
|
VACUUM WALL
|
|
<span>Firewall Management</span>
|
|
</div>
|
|
<nav>
|
|
<a href="/dashboard" class="{{ 'active' if request.path == '/dashboard' or request.path == '/' else '' }}">Dashboard</a>
|
|
<a href="/interfaces" class="{{ 'active' if request.path == '/interfaces' else '' }}">Interfaces</a>
|
|
<a href="/zones" class="{{ 'active' if request.path == '/zones' else '' }}">Zones</a>
|
|
<a href="/rules" class="{{ 'active' if request.path == '/rules' else '' }}">Rules</a>
|
|
<a href="/nat" class="{{ 'active' if request.path == '/nat' else '' }}">NAT</a>
|
|
<a href="/dhcp" class="{{ 'active' if request.path == '/dhcp' else '' }}">DHCP & DNS</a>
|
|
<a href="/proxy" class="{{ 'active' if request.path == '/proxy' else '' }}">Proxy</a>
|
|
<a href="/certs" class="{{ 'active' if request.path == '/certs' else '' }}">Certificates</a>
|
|
<a href="/wireguard" class="{{ 'active' if request.path == '/wireguard' else '' }}">WireGuard</a>
|
|
<a href="/logs" class="{{ 'active' if request.path == '/logs' else '' }}">Logs</a>
|
|
</nav>
|
|
</aside>
|
|
|
|
<main class="main">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<div class="toast-container" id="toast-container"></div>
|
|
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|