{% extends "base.html" %} {% load i18n %} {% load account %} {% block title %}{% trans "Sign In" %}{% endblock %} {% block content %}
{% trans "Sign In" %} {% if socialaccount %} {% trans "Please sign in with one of your existing third party accounts or sign in with your email address and password." %} {% else %} {% trans "Please sign in with your email address and password." %} {% endif %}
{% csrf_token %} {% if form.non_field_errors %} {{ form.non_field_errors }} {% endif %}
{{ form.login.label }} {% if form.login.errors %}
{{ form.login.errors }}
{% endif %}
{{ form.password.label }} {% if form.password.errors %}
{{ form.password.errors }}
{% endif %}
{% if form.remember %}
{{ form.remember.label }}
{% endif %}
{% trans "Sign In" %}
{% trans "Don't have an account?" %} {% trans "Sign up" %}
{% endblock %}