{% 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 html_extra %}data-qa-id="decide"{% endblock %} {% block title %} {% blocktrans %}Authenticate to {{ trust_root }}{% endblocktrans %} {% endblock %} {% block content_id %}auth{% endblock %} {% block content %}

{% blocktrans %} You are logging in to {{ trust_root }} {% endblocktrans %}

{% if rpconfig %}

{% blocktrans with site_name=rpconfig.displayname %}{{ site_name }} has requested some personal information. Please choose what you would like to share:{% endblocktrans %}

{% else %}

{% blocktrans %} The site has requested some personal information. Please choose what you would like to share:{% endblocktrans %}

{% endif %}
{% csrf_token %}
{% if user_attribs_form.has_data or teams_form.has_data %}
    {% if user_attribs_form.has_data %} {% for field in user_attribs_form %}
  • {{ field|safe }} {{ field.label_tag }}
  • {% endfor %} {% endif %} {% if teams_form.has_data %} {% 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 %}