585c2feee54f9e2f3827ace0031e371cbc6a41cf
[phorkie.git] / data / templates / forbidden.htm
1 {% extends "base.htm" %}
2 {% block title %}Access Denied{% endblock %}
3
4 {% block content %}
5
6 <img src="/images/access_denied.png" align='left' alt="acces denied"/>
7 <h2>Access Denied</h2>
8 {% if identity %}
9 <p>
10  You are logged in with the following OpenID:
11 </p>
12 <p>
13  <code>{{identity}}</code>
14 </p>
15 <p>
16  Unfortunately, your OpenID is not unlocked.
17  Contact the site administrator to get access.
18 </p>
19 {% else %}
20 <p>
21  We're sorry; but you have to <a href="/login">log in</a> to access this page.
22 </p>
23 {% endif %}
24 {% endblock %}
25