mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
15 lines
384 B
HTML
15 lines
384 B
HTML
|
{% extends "error.html" %}
|
||
|
|
||
|
{% block error_name %}
|
||
|
You need to login to see this page.
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block error_description %}
|
||
|
We are sorry but you are not authorized to access this page.
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block suggestion %}
|
||
|
<a class="btn btn-primary" href="{{ url_for('auth.login', next=current_url) }}">
|
||
|
<i class="fe fe-log-in mr-2"></i>Login
|
||
|
</a>
|
||
|
{% endblock %}
|