{% extends "base.html" %}{% load url from future %} {% block title %}Kibou - Register User{% endblock %} {% block content %}

Rules

{% csrf_token %} {% for field in form %} {% if field.errors %}
{% else %}
{% endif %} {{ field.label_tag }} {{ field }} {% for error in field.errors %}

{{ error }}

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