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

{% block title %}{% trans "Add Backup Phone" %}{% endblock %}

{% if wizard.steps.current == 'setup' %}

{% blocktrans %}You'll be adding a backup phone number to your account. This number will be used if your primary method of registration is not available.{% endblocktrans %}

{% elif wizard.steps.current == 'validation' %}

{% blocktrans %}We've sent a token to your phone number. Please enter the token you've received.{% endblocktrans %}

{% endif %}
{% csrf_token %} {{ wizard.management_form }} {% include "bulma_form.html" %} {# hidden submit button to enable [enter] key #}
{% include "mfa/_wizard_actions.html" %}
{% endblock %}