12 lines
309 B
HTML
12 lines
309 B
HTML
{% extends "layout.html" %}
|
|
{% block maintitle %}
|
|
401 - Unauthorized
|
|
{% endblock %}
|
|
{% block main %}
|
|
{% if message: %}
|
|
<p>{{ message }}</p>
|
|
{% else %}
|
|
<p>Authentication was not succesful</p>
|
|
{% endif %}
|
|
<p><a href="{{ basepath }}/login" title="Login">Try to login again</a></p>
|
|
{% endblock %}
|