{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %}{% translate "Two-Factor Authentication Setup" %}{% endblock %} {% block content %}

{% translate "Two-Factor Authentication Setup" %}

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% if not has_2fa %}

{% translate "Enable Two-Factor Authentication" %}

{% translate "Two-factor authentication adds an extra layer of security to your account. Once enabled, you'll need to enter both your password and a verification code when logging in." %}

{% else %}

{% translate "Two-Factor Authentication is Enabled" %}

{% translate "Your account is protected with two-factor authentication." %}

{% endif %}
{% endblock %}