21 lines
258 B
Plaintext
21 lines
258 B
Plaintext
|
{% extends 'frontend/base.html.j2' %}
|
||
|
|
||
|
{% block title %}{{ gettext('2FA - TOTP - New') }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
{{ render_form(form) }}
|
||
|
|
||
|
<div id="svg-container">
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
|
||
|
{% block script_js %}
|
||
|
|
||
|
totp.init_new();
|
||
|
|
||
|
|
||
|
{% endblock %}
|