{% extends "base/base.html" %} {% block title %} Sign In {% endblock %} {% block h1 %} Sign In {% endblock %} {% block content %}
{% csrf_token %} {% if form.errors %}

Authentication error: Please enter a correct username and password. Note that both fields are case-sensitive.

{% endif %} {% include "includes/forms/generic_form_renderer.html" %}

Forgot your password? {% if user.is_superuser or not ONLY_SUPERUSERS_CAN_REGISTER_PEOPLE %}

New to Local Ground? Create an account

{% endif %}
{% endblock %}