{% extends "base.html" %} {% load i18n %} {% comment %} Copyright 2010 Canonical Ltd. This software is licensed under the GNU Affero General Public License version 3 (see the file LICENSE). {% endcomment %} {% block extra_header %} {% endblock %} {% block title %} {% blocktrans %}Authenticate to {{ trust_root }}{% endblocktrans %} {% endblock %} {% block content_id %}auth{% endblock %} {% block content %} {% if rpconfig %} {% include "widgets/trusted_rp.html" %} {% else %} {% include "widgets/unknown_rp.html" %} {% endif %}

{% if rpconfig %} {% blocktrans with rpconfig.displayname as rpconfigname %}If you proceed, the following information will be available to {{ rpconfigname }}:{% endblocktrans %} {% else %} {% blocktrans %}If you proceed, the following information will be available to the website:{% endblocktrans %} {% endif %}

{% csrf_token %}
{% if sreg_form.should_display or teams_form.should_display %}
    {% for field in sreg_form %}
  • {{ field|safe }} {{ field.label_tag }}
  • {% endfor %} {% if teams_form.should_display %} {% ifequal teams_form.fields|length 1 %} {% for field in teams_form %}
  • {{ field|safe }} {{ field.label_tag }}
  • {% endfor %} {% else %}
  • {% trans "Team membership:"%}
      {% for field in teams_form %}
    • {{ field|safe }} {{ field.label_tag }}
    • {% endfor %}
  • {% endifequal %} {% endif %}
{% endif %}

{% trans "or" %} {% trans "cancel" %}


{% endblock %}