lenticular_cloud2/templates/frontend/totp_new.html.j2
2020-05-10 14:34:28 +02:00

21 lines
258 B
Django/Jinja

{% 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 %}