{% extends "multifactor/base.html" %} {% load static %} {% block card_title %}Multi-Factor Authentication Dashboard{% endblock %} {% block card_classes %}{% endblock %} {% block content %} {% if can_edit %}
{% endif %}

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 key in keys %} {% empty %} {% endfor %}
Type Added
{{ key.get_key_type_display }} Added: {{ key.added_on }}
Expires: {{ key.expires|default:"Never" }}
Last used: {{ key.last_used|default:"Never" }}
{% if can_edit %} {{key.enabled|yesno:'Enabled,Disabled'}} Delete {% endif %}
You don't have any keys yet, please add one.
But what is multi-factor authentication? Where do I start? {% endblock %} {% block head %}{% endblock %}