Skip to content

Commit 913d90b

Browse files
committed
add missing template unauthorized.html. ready for merge
- Legacy-Id: 7213
1 parent 8d56e45 commit 913d90b

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)