{% if request.is_ajax %}
{% for alert in alerts %}
{{ alert.msg }}
{% endfor %}
{% if username_form.errors %}
Either your username and/or password are invalid or your user is inactive.
{% endif %}
{% csrf_token %}
{{ username_form.username }}
{{ username_form.password }}
{% if pin_login_ready_users %}
Users listed below can login with their PIN. Otherwise, you must first login with your username and password to enable PIN login.
{% for user in pin_login_ready_users %} {{ user.username }} {% endfor %}
{% if pin_form.errors %}
The PIN you entered is incorrect or invalid, please try again.
{% endif %}
{% csrf_token %}
{{ pin_form.pin }}
{% else %}
No users can currently login with their PIN. Login with your username and password to enable PIN login for your user.
{% endif %} {% else %}
AJAX Only
{% endif %}