add some spacing for new and list page to the navbar
[phorkie.git] / data / templates / forbidden.htm
1 {% extends "base.htm" %}
2 {% block title %}Access Denied{% endblock %}
3
4 {% block meta %}
5 <meta name="robots" content="noindex"/>
6 {% endblock %}
7
8 {% block content %}
9
10 <h2>Access Denied</h2>
11 {% if identity %}
12 <p>
13  You are logged in with the following OpenID:
14 </p>
15 <p>
16  <code>{{identity}}</code>
17 </p>
18 <p>
19  Unfortunately, your OpenID is not unlocked.
20  Contact the site administrator to get access.
21 </p>
22 {% else %}
23 <p>
24  We're sorry; but you have to <a href="/login">log in</a> to access this page.
25 </p>
26 {% endif %}
27 {% endblock %}
28