datatracker/ietf/secr/templates/unauthorized.html
Lars Eggert 021ba39712 Reindent all templates with djhtml
- Legacy-Id: 19610
2021-11-10 09:41:11 +00:00

18 lines
413 B
HTML
Executable file

{% extends "base_site.html" %}
{% block title %}Unauthorized{% endblock %}
{% block content %}
<H2>Unauthorized</h2>
<h3>
{% if user_name %}
Sorry, {{ user_name }}, you are not authorized{% if group_name %} to access Group: {{ group_name }}{% else %} to access this page.{% endif %}
{% else %}
<p>Login invalid</p>
{% endif %}
</h3>
{% endblock %}