12 lines
482 B
HTML
12 lines
482 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="columns is-centered mt-6">
|
|
<div class="column is-half has-text-centered">
|
|
<h1 class="title is-1" style="font-size:6rem;color:#2F5496;">404</h1>
|
|
<p class="subtitle is-4">Seite nicht gefunden</p>
|
|
<p class="has-text-grey mb-4">Die angeforderte Seite existiert nicht.</p>
|
|
<a class="button is-primary" href="{{ url_for('admin.dashboard') }}">Zum Dashboard</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|