{% extends "2fa/base.html" %}{% load i18n %} {% block title %}{% translate "2nd Factor Login" %}{% endblock %} {% block content %} {% if form.errors and not form.non_field_errors %}

{% if form.errors.items|length == 1 %}{% translate "Please correct the error below." %}{% else %}{% translate "Please correct the errors below." %}{% endif %}

{% endif %}
{% csrf_token %}
{{ form.mfa_code.errors }} {{ form.mfa_code.label_tag }} {{ form.mfa_code }}
{% endblock %}