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

{% trans "Sign In" %}

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}

{% trans 'Please sign in with one of your existing third party accounts. Or, ' %} {% trans 'sign up' %} {% trans ' an account and sign in below:' %}

{% include "socialaccount/snippets/login_extra.html" %} {% else %}

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

{% endif %}
{% 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 %}