{% extends "account/base.html" %} {% block head_title %}{{ _('Sign In') }}{% endblock %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %}
{% csrf_token %}

{{ _('Sign In') }}

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

{% trans site_name=site.name -%} Please sign in with one of your existing third party accounts. Or, sign up for a {{ site_name }} account and sign in below: {% endtrans %}

    {% set process="login" %} {% include "socialaccount/snippets/provider_list.html" %}
{% include "socialaccount/snippets/login_extra.html" %} {% else %}

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

{% endif %}
{{ form.non_field_errors() }} {% for field in form %} {% if field.field.__class__.__name__ == 'BooleanField' %}
{% else %}
{{ field.errors | safe }} {{ field.as_widget() | safe }} {{ field.label_tag() | safe }} {% if field.help_text %}

{{ field.help_text | safe }}

{% endif %}
{% endif %} {% endfor %} {% if redirect_field_value %} {% endif %}
{{ _('Forgot Password?') }}
{% endblock %}