Skip to content

Commit 1b3bbad

Browse files
committed
Merged [7213] from rcross@amsl.com: add missing template unauthorized.html.
- Legacy-Id: 7241 Note: SVN reference [7213] has been migrated to Git commit 913d90b
2 parents 2e51d7a + 913d90b commit 1b3bbad

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% extends "base_site.html" %}
2+
3+
{% block title %}Unauthorized{% endblock %}
4+
5+
{% block content %}
6+
7+
<H2>Unauthorized</h2>
8+
9+
<h3>
10+
{% if user_name %}
11+
Sorry, {{ user_name }}, you are not authorized{% if group_name %} to access Group: {{ group_name }}{% else %} to access this page.{% endif %}
12+
{% else %}
13+
<p>Login invalid</p>
14+
{% endif %}
15+
</h3>
16+
17+
{% endblock %}

0 commit comments

Comments
 (0)