ansible/roles/ipsilon/files/templates/unauthorized.html
Patrick Uiterwijk 44230bfa16 Bring new OpenID templates LIVE
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2016-01-15 12:58:47 +00:00

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