{% extends "account/base.html" %} {% load widget_tweaks %} {% load account socialaccount %} {% block head_title %} Sign in {% endblock %} {% block content %}
{% csrf_token %}

Sign in

{{ form.non_field_errors }} {% for field in form.visible_fields %} {% if field.name != "remember" %} {{ field|add_label_class:"font-semibold text-xs" }} {% render_field field class="flex items-center w-64 h-12 px-4 pb-3 mt-2 rounded focus:outline-none focus:ring-2" %} {% for error in field.errors %} {{ error }} {% endfor %} {% endif %} {% endfor %} {% get_providers as socialaccount_providers %} {% if socialaccount_providers %}

OR

Sign in with a third party

{% include "socialaccount/snippets/provider_list.html" with process="login" %} {% endif %} {% if redirect_field_value %} {% endif %} {% include "socialaccount/snippets/login_extra.html" %}
{% endblock %}