app-MAIL-temp/templates/error/401.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 %}