DasUnternehmen/templates/404.html
2026-04-13 22:58:43 +02:00

19 lines
548 B
HTML

{% extends "base.html" %}
{% block title %}404 - Seite nicht gefunden{% endblock %}
{% block content %}
<div class="content-card">
<h1>404 - Seite nicht gefunden</h1>
<p>
Die angeforderte Seite wurde nicht gefunden.
</p>
<div class="form-actions" style="margin-top: 24px;">
<a class="btn" href="{{ url_for('index') }}">Zur Startseite</a>
{% if current_user %}
<a class="btn btn-secondary" href="{{ url_for('dashboard') }}">Zum Dashboard</a>
{% endif %}
</div>
</div>
{% endblock %}