{% extends "base.html" %} {% block content %}

Authenticate site

{% if error %}

{{ error }}

{% else %}

Would you like to allow the following site to use your listed identity?

Trust root
{{ openid_request.trust_root }}
Return-To URL
{{ openid_request.return_to }}
Claimed identity
{{ openid_request.claimed_id }}
Identity
{{ openid_request.identity }}
Return-To validity
{{ return_to_valid }}
{% csrf_token %} {% if sreg %}
User information {% if policy_url %}

Privacy policy of the service.

{% endif %} {% for w in form %} {% if w.name in sreg %} {% for k, v in sreg_form.items %} {% if k == w.name %} {% endif %} {% endfor %} {% endif %} {% endfor %}
{{ w }} {{ w.label_tag }} {{ v }}
{% endif %}
{{ form.always_auth }} {{ form.always_auth.label_tag }}
{% endif %}

{% endblock %} {# vim:se fileencoding=utf8 et ts=4 sts=4 sw=4 ft=htmldjango : #}