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