{% extends "base.html" %} {% block content %}

{% trans "Forgot PIN" %}

{% csrf_token %}
{% if form.errors or form.non_field_errors %} {% if form.non_field_errors %} {% for error in form.non_field_errors %}

{{ error }}

{% endfor %} {% endif %} {% endif %} {% for field in form %} {{ field }} {{ field.errors}} {% if forloop.counter == 1 %}

{% trans "Security question" %}:

{% trans "Please answer the following security question." %}

{% endif %} {% endfor %}
{% endblock %}