{% extends "multifactor/base.html" %} {% load static i18n %} {% block card_title %}{% trans "Add a New Factor" %}{% endblock %} {% block container_class %}{% endblock %} {% block content %}

{% trans "To protect your account and this system from intrusion we request a second verification factor." %}

{% trans "There are a range of options. TOTP authenticators are a good first factor because most people always have their phone with them. USB and on-device options might be more secure but have more limited portability." %}

{% if 'FIDO2' in available_factors %}
{% trans "FIDO2 Device" %}

{% blocktrans %}A broad range of devices: Windows Hello (fingerprint, facial recognition), Google Chrome, Google Android (via biometrics or location), or FIDO2 USB and NFC keys.{% endblocktrans %}

{% trans "On-device options are convenient but will lock you to that device. USB keys are more portable." %}

{% endif %} {% if 'TOTP' in available_factors %}
{% trans "TOTP Authenticator" %}

{% trans "Install an authenticator from your phone's marketplace and get access to a secure rotating passcode. Once linked, verification is just a matter of copying that code back into here when prompted." %}

{% trans "Benefits: free, portable." %}

{% endif %}
{% endblock %}