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

{% trans "Enter Verification Code" %}

{% trans "We've sent a 6-digit code to your email." %}

{% if otp_error %}
{{ otp_error }}
{% endif %} {% if otp_success %}
{{ otp_success }}
{% endif %}
{% csrf_token %} {{ form.non_field_errors }}
{{ form.otp_code }} {% if form.otp_code.errors %}
{{ form.otp_code.errors.0 }}
{% endif %}
{% endblock content %}