This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
auf-auf-django-secretquestions/secretquestions/templates/secretquestions/setup_form.html

24 lines
502 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>
{% blocktrans %}
Select several questions and register your secret answers.
These one will be asked to you for some critical features which required more
security to ensure that is you.
{% endblocktrans %}
</p>
{{ formset.non_form_errors.as_ul }}
<form action="" method="post">{% csrf_token %}
<table>
{{ formset }}
</table>
<input type="submit" value="{% trans "Save all" %}" />
</form>
{% endblock content %}