{% extends "authentic2/base-page.html" %} {% load i18n %} {% block title %} {% trans "Registration" %} {% endblock %} {% block content %}

{% trans "Login" %}

{% if email %}

{% blocktrans trimmed count accounts_number=accounts|length %}An account already exists for this email address.{% plural %}Existing accounts are associated with this email address.{% endblocktrans %}

{% elif phone %}

{% blocktrans trimmed count accounts_number=accounts|length %}An account already exists for this phone number.{% plural %}Existing accounts are associated with this phone number.{% endblocktrans %}

{% endif %}

{% blocktrans trimmed count accounts_number=accounts|length %} Please click on the account name to log in with.{% plural %}Please choose the account you want to log in with.{% endblocktrans %}

{% if not email_is_unique %}

{% trans "or" %} {% trans "create a new account" %}

{% endif %} {% endblock %}