{% extends "multifactor/base.html" %} {% load static i18n %} {% block card_title %}{% trans "Multi-Factor Verification" %}{% endblock %} {% block container_class %}{% endblock %} {% block content %} {% if can_edit %} {% trans "Add New Factor" %} ➕ {% endif %}

{% trans "To keep your account secure, you can add one or more secondary authentication factors. These are commonly USB keys, or codes acquired through a secure mechanism like an authenticator." %}

{% for factor in factors %} {% endfor %}

{{ factor.display_name }}

{% blocktrans with added=factor.added_on.date %}Added {{ added }}.{% endblocktrans %} {% if factor.last_used %}{% blocktrans with used=factor.last_used|timesince %}Used {{ used }} ago.{% endblocktrans %}{% else %}{% trans "Never used." %}{% endif %}

{% if factor.id in authed_kids %} 🔓 {% elif factor.enabled %} 🔒 {% endif %} {% if can_edit %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% trans "Fallback verification factors" %}

{% trans "Consider turning these off for higher security." %}

{% csrf_token %} {% for fb_name, fb_enabled, fb_destination in available_fallbacks %}
{% csrf_token %}
{% endfor %}
{% endblock %} {% block head %}{% endblock %}