{% block header %}
{% block header_text %}Two-Factor Authentication{% endblock %}
{% endblock %}
{% with WIDGET_ERROR_CLASS="is-invalid" %} {% block content %}Nothing to see here!{% endblock %} {% endwith %}
{% if is_debug %}
Debug Info
  • User: {{ request.user }} ({{ request.user.pk }})
  • {% if is_verification %}
  • E164 Number: {{ phone_number }}
  • Obfuscated Number: {{ obfuscated_phone_number }}
  • Formatted Number: {{ formatted_phone_number }}
  • {% endif %}
  • Next URL: {{ request.session.twilio_2fa_next_url|default_if_none:"--" }}
  • Attempts Made: {{ request.session.twilio_2fa_attempts }}
  • Timed Out Until: {{ request.user.profile.timeout_for_2fa }} ({{ request.user.profile.timeout_for_2fa|timeuntil }})
{% endif %}