mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-17 14:26:18 +00:00
23 lines
702 B
HTML
23 lines
702 B
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 %}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>
|