{% extends "account/base.html" %} {% load static i18n widget_tweaks %} {% block head_title %}{% trans "Sign In" %}{% endblock%} {% block auth_title %}{% trans "Welcome Back" %}{% endblock auth_title %} {% block auth_body %}

{% trans "Sign in to your account to continue" %}

{% csrf_token %} {% include 'account/snippets/form_error_list.html' with errors=form.non_field_errors %} {% include 'account/snippets/form_control.html' with field=form.login %} {% include 'account/snippets/form_control.html' with field=form.password %}
{% render_field form.remember class="me-1" %}
{% include 'account/snippets/social_login.html' %}
{% trans "I forgot my password" %} | {% trans "Register a new account." %}
{% endblock auth_body %}