{% extends "account/base_entrance.html" %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Sign In" %} {% endblock head_title%} {% block content %}

{% trans "Sign In" %}

If you have not created an account yet, then please sign up first.

{% url 'account_login' as login_url %}
{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% if redirect_field_value %} {% endif %}
{% if SOCIALACCOUNT_ENABLED %} {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endif %} {% endblock content %}