12 lines
269 B
HTML
12 lines
269 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<h1><span class="text-danger">Fehler: {{status}}</span></h1>
|
|
<hr>
|
|
{% if title %}
|
|
<h2 class="without-margin">{{title}}</h2>
|
|
{% endif %}
|
|
{% if message %}
|
|
<h4 class="text-danger">{{message}}</h4>
|
|
{% endif %}
|
|
{% endblock %}
|