{% extends "base.html" %} {% load static %} {% block title %}Two-Factor Authentication - Stream Processor{% endblock %} {% block page_title %}
Two-Factor Authentication
{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Two-Factor Authentication

Hi {{ user.get_full_name|default:user.username }}, please enter the 6-digit code from your authenticator app.

{% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{% endif %}

Open your authenticator app and enter the current 6-digit code.

{% csrf_token %}
{% if form.token.errors %}
{% for error in form.token.errors %} {{ error }} {% endfor %}
{% endif %}
{% endblock %}