Merged [7213] from rcross@amsl.com: add missing template unauthorized.html.
- Legacy-Id: 7241
Note: SVN reference [7213] has been migrated to Git commit 913d90b90a
This commit is contained in:
commit
1b3bbad040
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