mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
26 lines
568 B
HTML
26 lines
568 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="page-content">
|
||
|
<div class="container text-center">
|
||
|
<div class="display-3 text-muted mb-5">
|
||
|
<i class="si si-exclamation"></i>
|
||
|
{% block error_name %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
|
||
|
<h3 class="h3 mb-4">
|
||
|
{% block error_description %}
|
||
|
{% endblock %}
|
||
|
</h3>
|
||
|
|
||
|
{% block suggestion %}
|
||
|
<a class="btn btn-primary" href="/">
|
||
|
<i class="fe fe-home mr-2"></i>Home Page
|
||
|
</a>
|
||
|
{% endblock %}
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|