{% extends "frontend/base.html" %} {% load static i18n %} {% load allauth account socialaccount %} {% block html_title %} {% block page_title %} {% translate "Sign In" %} {% endblock page_title %} {% endblock html_title %} {% block card_content %} {% if SOCIALACCOUNT_ENABLED %} {% get_providers as socialaccount_providers %} {% if socialaccount_providers %} {% for provider in socialaccount_providers %} {% provider_login_url provider process=process scope=scope auth_params=auth_params as href %}
{% csrf_token %}
{% endfor %} {% endif %} {% endif %}
{% translate "Log in with email and password instead" %}
{% url 'account_login' as form_action %} {% translate "Sign In" as form_submit_label %} {% include "includes/form.html" %}
{% endblock content %}