mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-25 02:50:15 +08:00
13 lines
314 B
HTML
13 lines
314 B
HTML
{% extends "master-user.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 %}
|