17 lines
523 B
HTML
17 lines
523 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}401 - Nicht autorisiert{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="content-card">
|
|
<h1>401 - Nicht autorisiert</h1>
|
|
<p>
|
|
Sie sind für diese Seite nicht autorisiert oder Ihre Anmeldung ist nicht mehr gültig.
|
|
</p>
|
|
|
|
<div class="form-actions" style="margin-top: 24px;">
|
|
<a class="btn" href="{{ url_for('login') }}">Zum Login</a>
|
|
<a class="btn btn-secondary" href="{{ url_for('index') }}">Zur Startseite</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |