{% extends "account/base.html" %} {% load i18n %} {% load account socialaccount allauth_ens %} {% block title %}{% trans "Sign In" %}{% endblock %} {% block header-title %}{% trans "Sign In" %}{% endblock %} {% block messages-extra %} {% if form.errors or user.is_authenticated %}
{% endif %} {% endblock %} {% block content %} {% get_providers as socialaccount_providers %} {% if socialaccount_providers %}

{% blocktrans %} Please sign in with one of your existing third party accounts, or with the form opposite. {% endblocktrans %}

{% include "socialaccount/snippets/login_extra.html" %}
{% endif %}
{% include "account/block-form.html" with form=form %} {% if redirect_field_value %} {% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}