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

AUTHENTICATE

{% csrf_token %} {% if form.errors %}
INVALID_CREDENTIALS. PLEASE_TRY_AGAIN.
{% endif %} {% for field in form %}
{% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
{% endblock %}