{% extends 'frontend/base.html.j2' %} {% block title %}{{ gettext('2FA - TOTP') }}{% endblock %} {% block content %} {% for totp in current_user.totps %} {% endfor %}
name created_at action
{{ totp.name }} {{ totp.created_at }} {{ render_form(delete_form, action_url=url_for('frontend.totp_delete', totp_name=totp.name)) }}
New TOTP {% endblock %} {% block script_js %} totp.init_list(); {% endblock %}