{% extends '_base.html' %} {% load form_helpers %} {% load account socialaccount %} {% block content %}
{% if settings.BANNER_LOGIN %}
{{ settings.BANNER_LOGIN|safe }}
{% endif %} {% if form.non_field_errors %}
Errors
{{ form.non_field_errors }}
{% endif %}
Log In
{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}
    {% include "extras/provider_list.html" with process="login" %}
{% endif %} {% csrf_token %} {% if 'next' in request.GET %}{% endif %} {% if 'next' in request.POST %}{% endif %} {% render_form form %}
{% endblock %}