2026-03-16 11:58:48 -03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2026-03-24 12:38:18 -03:00
|
|
|
<meta name="robots" content="noindex, noarchive">
|
2026-03-16 11:58:48 -03:00
|
|
|
<title>{% block title %}Gatekeeper{% endblock %}</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ external_path }}/static/style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="shell">
|
|
|
|
|
<div class="brand">
|
|
|
|
|
<span class="brand-name">🔐 Gatekeeper</span>
|
|
|
|
|
</div>
|
|
|
|
|
<section class="card">
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</section>
|
|
|
|
|
</div>
|
|
|
|
|
<footer>
|
|
|
|
|
<a href="https://github.com/eduardogsilva/wireguard_webadmin" target="_blank" rel="noopener noreferrer">WireGuard WebAdmin</a>
|
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|