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