{% extends '__base__.html' %} {% load i18n %} {% block title %}{% trans "Rolca - Login" %}{% endblock %} {% block content %}
{% csrf_token %} {% for field in form %} {% include 'registration/form_field.html' %} {% endfor %}

{% if form.errors %}

{% trans "Error!" %} {% trans "Please enter a correct username and password. Note that both fields are case-sensitive." %}

{% endif %}
{% endblock %}