{% extends "base.html" %} {% load smartmin i18n %} {% block content %}

{% blocktrans %} Sorry, you cannot log in at this time because we received {{failed_login_limit}} incorrect login attempts. {% endblocktrans %}

{% if lockout_timeout >= 0 %}

{% blocktrans %} Please wait {{lockout_timeout}} minutes before to try log in again. {% endblocktrans %}

{% endif %} {% if allow_email_recovery %}

{% trans "Alternatively, you can fill out the form below to have your password reset via e-mail." %}

{% else %}

{% trans "Please contact the website administrator to have your password reset." %}

{% endif %}
{% if allow_email_recovery %}
{% csrf_token %}
{% endif %} {% endblock %}