add missing template unauthorized.html. ready for merge
- Legacy-Id: 7213
This commit is contained in:
parent
8d56e458d9
commit
913d90b90a
17
ietf/secr/templates/unauthorized.html
Executable file
17
ietf/secr/templates/unauthorized.html
Executable file
|
@ -0,0 +1,17 @@
|
|||
{% 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 %}
|
Loading…
Reference in a new issue