eca887eadb
- F-12: HTML-Antworten erhalten 'Cache-Control: no-store' (Formulare/Session nicht cachebar); statische Assets bleiben cachebar. - F-14: Favicon (bi-globe2 als SVG, Logo-Farbe) inkl. /favicon.ico-Route und <link rel="icon"> in allen Templates -> kein 404-Rauschen mehr. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
864 B
HTML
23 lines
864 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ code }} — DynDNS Manager</title>
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.svg') }}" type="image/svg+xml">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/login.css') }}">
|
|
</head>
|
|
<body class="justify-content-center">
|
|
<div class="login-card text-center">
|
|
<div class="card shadow">
|
|
<div class="card-body p-5">
|
|
<div class="display-4 fw-bold text-primary mb-2">{{ code }}</div>
|
|
<p class="text-muted mb-4">{{ message }}</p>
|
|
<a href="{{ url_for('dashboard') }}" class="btn btn-primary">Zur Startseite</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|