From 913d90b90ac537ec4cf88a632238a222e0a96bc3 Mon Sep 17 00:00:00 2001 From: Ryan Cross Date: Thu, 6 Feb 2014 20:42:44 +0000 Subject: [PATCH] add missing template unauthorized.html. ready for merge - Legacy-Id: 7213 --- ietf/secr/templates/unauthorized.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 ietf/secr/templates/unauthorized.html diff --git a/ietf/secr/templates/unauthorized.html b/ietf/secr/templates/unauthorized.html new file mode 100755 index 000000000..8d2cdaf16 --- /dev/null +++ b/ietf/secr/templates/unauthorized.html @@ -0,0 +1,17 @@ +{% extends "base_site.html" %} + +{% block title %}Unauthorized{% endblock %} + +{% block content %} + +

Unauthorized

+ +

+{% 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 %} +

Login invalid

+{% endif %} +

+ +{% endblock %}