2015-02-24 17:58:29 +00:00
|
|
|
{% extends "layout.html" %}
|
2016-01-15 12:58:40 +00:00
|
|
|
{% block maintitle %}
|
2015-02-24 17:58:29 +00:00
|
|
|
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 %}
|