{% extends "socialaccount/base.html" %} {% block title %}{{ page_title(_("Account Connections")) }}{% endblock %} {% block content %}

{{ _("Account connections") }}

{% if form.accounts %}

{% trans %}You can sign in to your profile using any of the following:{% endtrans %}

{{ csrf() }}
{% if form.errors %} {% for error in form.non_field_errors() %}
{{ error|safe }}
{% endfor %} {% endif %}
    {% for base_account in form.accounts.order_by('provider') %} {% with account=base_account.get_provider_account() %}
  • {% endwith %} {% endfor %} {% if form.account.errors %} {% for error in form.account.errors %}
    {{ error }}
    {% endfor %} {% endif %}

{% else %}

{{ _("You have no connected accounts.") }}

{% endif %}

{{ _("Connect a new account") }}

{% with process="connect" %} {% include "socialaccount/snippets/provider_list.html" %} {% endwith %}

{{ _("Edit profile") }}

{% endblock %}