{% extends "account/base.html" %} {% load i18n %} {% load account socialaccount %} {% block head_title %}{% trans "Sign In" %}{% endblock %} {% block fullcontent %} {% get_providers as socialaccount_providers %}

{% trans "Sign In" %}

{% if socialaccount_providers %} {% for provider in socialaccount_providers%} {% endfor %} {% include "socialaccount/snippets/login_extra.html" %}
Or
{% endif %}
{% csrf_token %} {% for field in form.visible_fields %} {% if field.field.widget.input_type == 'checkbox' %}
{{ field }}
{% else %}
{% if 'E-mail' in field.label %} {% elif 'Password' in field.label %} {% else %} {% endif %} {{ field }}
{% endif %} {% endfor %} {% if form.errors %}
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ error|escape }}
  • {% endfor %} {% endfor %}
{% endif %} {% if redirect_field_value %} {% endif %}

{% blocktrans %}New to us? Sign up here instead.{% endblocktrans %}

{% if form.errors %}

Forgot your password? Reset it here.

{% endif %}
{% endblock %}