ansible/roles/ipsilon/files/templates/unauthorized.html

13 lines
309 B
HTML
Raw Normal View History

{% 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 %}