28 lines
788 B
HTML
28 lines
788 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{title}}</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}message{% endblock %}
|
|
|
|
{% block customPadding %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-10 col-md-5">
|
|
<div class="text-center py-7 py-md-8">
|
|
|
|
<span class="fa-stack fa-2x text-muted mb-4">
|
|
<i class="fas fa-square text-gray-400 fa-stack-2x"></i>
|
|
<i class="fas text-gray-600 {% if message %}fa-envelope-open-text{% elif error %}fa-exclamation-triangle{% endif %} fa-stack-1x text-lg"></i>
|
|
</span>
|
|
|
|
<h1 class="h5">{{title}}</h1>
|
|
<div class="text-small text-muted mb-3">{{message if message else error}}</div>
|
|
<a href="/" class="btn btn-primary ">Go to homepage</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|