{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Signin Authentication Code" %}{% endblock %} {% block content %}
{% csrf_token %}
{% trans "Authentication Code" %} {{ form.non_field_errors }} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}

{{ field.label_tag }} {{ field }} {% if field.errors %}
{{ field.errors }}{% endif %}

{% endif %} {% endfor %}
{% if next %}{% endif %}
{% endblock %}