diff options
author | Simo Sorce <simo@redhat.com> | 2014-02-24 18:34:17 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2014-02-24 20:30:06 -0500 |
commit | 3574998f5f7c41e946610730638fd7e3fecb5835 (patch) | |
tree | af0fc74cd1ed071b66006f44ec5817b17e87ba09 /templates/unauthorized.html | |
parent | f7070919e1350f784f639fd2054eab80384abeea (diff) | |
download | ipsilon-3574998f5f7c41e946610730638fd7e3fecb5835.tar.gz ipsilon-3574998f5f7c41e946610730638fd7e3fecb5835.tar.xz ipsilon-3574998f5f7c41e946610730638fd7e3fecb5835.zip |
Use cherrypy handlers to render error pages
Replaces custom code to render 401 Unauthorized page as well as
adds 400 and 500 handlers
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'templates/unauthorized.html')
-rw-r--r-- | templates/unauthorized.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/unauthorized.html b/templates/unauthorized.html index ee2f412..cdb34da 100644 --- a/templates/unauthorized.html +++ b/templates/unauthorized.html @@ -2,7 +2,11 @@ {% block main %} <div class="col-sm-12"> <h1>401 - Unauthorized</h1> - <p>Authentication was not successful</p> + {% if message: %} + <p>{{ message }}</p> + {% else %} + <p>Authentication was not successful</p> + {% endif %} <p><a href="{{ basepath }}/login" title="Login">Try to login again</a></p> </div> -{% endblock %}
\ No newline at end of file +{% endblock %} |