summaryrefslogtreecommitdiffstats
path: root/templates/unauthorized.html
blob: cdb34da4aea747c482a4e4bdc2fe3e6bcd61d2ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "master.html" %}
{% block main %}
<div class="col-sm-12">
  <h1>401 - Unauthorized</h1>
  {% 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 %}