{% extends 'layout.html' %} {% block content %} Export Tresor {{ form.hidden_tag() }} {{ form.file_format.label(class="form-label") }} {{ form.file_format(class="form-select") }} {{ form.password.label(class="form-label") }} {% if form.password.errors %} {{ form.password(class="form-control is-invalid", type="password", id="password") }} {% for error in form.password.errors %} {{ error }} {% endfor %} {% else %} {{ form.password(class="form-control", type="password", id="password") }} {% endif %} Export Export Tresor This export contains your tresor data in an unencrypted format. You should not store or send the exported file over unsecure channels (such as email). Delete it immediately after you are done using it. Export Cancel {% if show_modal %} {% endif %} {% endblock content %}