{% extends "account/base.html" %} {% load i18n account django_bootstrap5 %} {% block head_title %}{% trans "Sign In" %}{% endblock %} {% block title %}{% trans "Sign In" %}{% endblock %} {% block accounts_content %}

{% trans "Sign In" %}

{% if SOCIALACCOUNT_ENABLED %} {% include "socialaccount/snippets/login.html" with page_layout="entrance" %} {% endif %}

{% blocktrans %}If you have not created an account yet, then please sign up first.{% endblocktrans %}

{% csrf_token %} {% bootstrap_form form %} {% if redirect_field_value %} {% endif %} {% trans "Sign In" as button_text %} {% bootstrap_button button_text button_type="submit" extra_classes="secondaryAction w-100" %}
{% endblock %}