mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-03-17 22:36:17 +00:00
refactor templates to extend base layout and improve styling
This commit is contained in:
22
containers/auth-gateway/auth_gateway/templates/base.html
Normal file
22
containers/auth-gateway/auth_gateway/templates/base.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user