{% load i18n %} {% if rate_limit_message %}
{{ rate_limit_message }}
{% endif %} {{ wizard.management_form }} {% if wizard.steps.current == "auth" %} {% if wizard.form.non_field_errors %}
{{ wizard.form.non_field_errors }}
{% endif %}
{{ wizard.form.errors.username }}
{{ wizard.form.errors.password }}

{% trans "I forgot my password .." %}

{% trans "I forgot my username .." %}

{% elif wizard.steps.current == "token" %} {% if wizard.form.non_field_errors %}
{{ wizard.form.non_field_errors }}
{% endif %}
{{ wizard.form.errors.otp_token }}
{% else %} {{ wizard.form }}
{% endif %}