mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-30 17:01:33 +08:00
13 lines
307 B
HTML
13 lines
307 B
HTML
{% extends "layout.html" %}
|
|
{% block toptext %}
|
|
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 %}
|