This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/otp/templates/otp/setup.html

21 lines
496 B
HTML

{% extends "generic/wizard.html" %}
{% load utils %}
{% block title %}
{% title "Setup" %}
{% endblock %}
{% block form %}
<label for="">Keep these tokens somewhere safe. These are to be used if you loose your primary TOTP device.</label>
{% for field in wizard.form %}
{% if field.field.widget|fieldtype == 'SelectMultiple' %}
<ul class="list">
{% for token in field.field.choices %}
<li>{{ token.0 }}</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
{% endblock %}