{% extends "base.html" %} {% block body %} {% if form.errors %}

Username and password do not match. Please try again.

{% endif %} {% if next %}
{% if user.is_authenticated %}

You are not authorized to access this site. Please log in with an account with the necessary permissions.

{% else %}

Please log in to view this site.

{% endif %}
{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% endblock %}