{% extends "base.html" %} {% load compress hc_extras static %} {% block title %}Log In - {{ site_name }}{% endblock %} {% block description %}{% endblock %} {% block head %} {% endblock %} {% block content %}
{% if account_closed %}

Account closed. Your account has been closed and its associated data has been deleted.

{% endif %}

Log In to {{ site_name }}

{% if bad_link %}

The login link you just used is either incorrect or expired.

Please use the form below to request a fresh login link.

{% endif %}
{% if use_magic_form %}
or
{% endif %}
{% csrf_token %} {% if form.non_field_errors %}

{{ form.non_field_errors|join:"" }}

{% elif form.errors %}

Incorrect email or password.

{% else %}

Enter your email address and password.

{% endif %}

Lost your password?

{% if registration_open %} {% include "front/signup_modal.html" %} {% endif %} {% endblock %} {% block base_scripts %}{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}