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

Setup Two-Factor Authentication

Secure your account with an additional layer of protection

Two-factor authentication adds an extra layer of security to your account. You'll need an authenticator app to complete this setup.

1
Scan QR Code
2
Verify Setup
3
Save Backup Codes
{% if messages %} {% for message in messages %}

{{ message }}

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

{{ error }}

{% endfor %}
{% endif %}

Step 1: Install an authenticator app like Google Authenticator, Authy, or Microsoft Authenticator on your mobile device.

Scan QR Code

QR Code for 2FA Setup

Scan this QR code with your authenticator app

Can't scan? Enter this secret key manually
{{ secret }}

Account: {{ user.username }}
Issuer: Stream Processor

Important: Make sure to save your backup codes after setup. They're your only way to access your account if you lose your authenticator device.

Verify Setup

1

Open your authenticator app

Launch the app you just installed

2

Add new account

Tap the + button or "Add account"

3

Scan the QR code above

Point your camera at the QR code

4

Enter the 6-digit code

Type the code shown in your app below

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