{% extends "layouts/dashboard.html" %} {% block breadcrumbs %} {% endblock %} {% block content %}

Add authenticator

Follow the two steps below to link your authenticator app.

Back to two-factor
{% include "components/rims_page_intro.html" with eyebrow="Two-factor enrolment" heading="Pair this account with an authenticator app." description="Use Google Authenticator, 1Password, Authy, or any TOTP-compatible app. Scan the QR code or paste the manual key, then verify with a fresh 6-digit code to activate." %}
{# ── Step 1 ── #}
Step 1 Scan the QR code
QR code for authenticator setup

Manual entry key

{{ secret_key }}

Choose "Enter setup key" in your app and enter the key above (type: time-based).

Need a new code? Generate a new secret — this invalidates the current key until setup is complete.

{# ── Step 2 ── #}
Step 2 Verify the 6-digit code
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{{ form.device_name }} {% if form.device_name.errors %}

{{ form.device_name.errors.0 }}

{% endif %}
{{ form.code }}

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

{% if form.code.errors %}

{{ form.code.errors.0 }}

{% endif %}
Cancel
{% endblock %}