{% extends "twilio_2fa/_base.html" %} {% load widget_tweaks %} {% block content %}
Please enter the token we {% if method == "sms" %}text to you {% elif method == "call" %}called you with {% elif method == "email" %}e-mailed to you {% elif method == "whatsapp" %}sent to you in WhatsApp {% else %}sent to you{% endif %} at
{{ obfuscated_value }}
in the field below.
{% include "twilio_2fa/_messages.html" %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.token class+="form-control text-center" placeholder="Enter your token here" style="width: 100%" %}
{% if form.token.errors %}
{{ form.token.errors }}
{% endif %}
{% csrf_token %}
{% endblock %}