{% extends 'auth/layouts/base.html' %} {% block content %}
LOGIN

Welcome

Lorem ipsum dolor sit amet, consectetur adipiscing Integer mattis ipsum consectetur adipiscing eros.

{% csrf_token %}
{% for field in form %}

{{ field.label_tag }}

{{ field }} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% endfor %}
{% if form.errors %}

Your username and password didn't match. Please try again.

{% endif %}
{% endblock %}