{% extends 'base.html' %} {% load i18n %} {% block content %}

Log in

{% if form.errors %}
×

{% trans "Log-in error!" %} {% trans "The details you entered were incorrect. Note that both fields are case-sensitive." %}

{% endif %}

The following demo user accounts are available (username/password):

{% csrf_token %}
{% trans 'Log in' %} ({% trans 'Sign up' %}) {% autoescape off %} {% for field in form %} {% include 'registration/form_field.html' %} {% endfor %} {% endautoescape %}
 
{% endblock %}