{% extends "base.html" %} {% block title %}Sign in{% endblock %} {% block content %}

Sign in

{% if form.errors %}

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

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

Your account doesn't have access to this page. Please sign in with an account that does.

{% else %}

Please sign in to continue.

{% endif %} {% endif %}
{% csrf_token %} {% for field in form %}
{{ field.label_tag }} {{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {{ field.errors }}
{% endfor %}
{% url 'register' as register_url %} {% url 'password_reset' as password_reset_url %} {% if register_url or password_reset_url %} {% endif %} {% endblock %}