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

{% trans "Verify Your Account" %}

{% if otp_method == 'email' %} {% if purpose == 'registration' %} {% trans "We have sent a verification code to your email address. Please enter it below to complete your registration." %} {% else %} {% trans "We have sent a verification code to your email address. Please enter it below to log in." %} {% endif %} {% else %} {% if purpose == 'registration' %} {% trans "We have sent a verification code to your WhatsApp number. Please enter it below to complete your registration." %} {% else %} {% trans "We have sent a verification code to your WhatsApp number. Please enter it below to log in." %} {% endif %} {% endif %}

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.errors %} {% for error in field.errors %}
{{ error }}
{% endfor %} {% endif %}
{% endfor %}
{% trans "Didn't receive the code?" %} {% trans "Try again" %}
{% endblock %}