{% extends 'conjunto/base.html' %} {% load i18n static conjunto %} {% block content %}
{% csrf_token %}

{% translate 'Login' %}

{% if form.non_field_errors %}
    {% for error in form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% for error in form.username.errors %}
{{ error }}
{% endfor %} {#
Invalid feedback
#}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{% url 'password_reset' as password_reset_url %} {% if password_reset_url %} {% translate "I forgot my password" %} {% else %} {% endif %}
{% if False %} THIS IS DEACTIVATED!
{% endif %}
{% block extra-form-content %} {% if false %} THIS IS DEACTIVATED!
{% translate 'or' %}
{% endif %} {% endblock %}
{% url 'signup' as signup_url %} {% if signup_url %}
{% translate "Don't have an account yet?" %} {% translate 'Sign up' %}
{% else %} {% endif %}
{% endblock %}