{% extends "registration/base.html" %} {% comment %} vim:ft=htmldjango: {% endcomment %} {% block title %} {{ block.super }} - Register {% endblock %} {% block content %} {% include "django_messages/inlines/navigation.html" %}

Registration


Username: {{ registration_form.username }}
{% for error in registration_form.username.errors %} {{ error }} {% endfor %}
Email: {{ registration_form.email }}
{% for error in registration_form.email.errors %} {{ error }} {% endfor %}
Password: {{ registration_form.password1 }}
{% for error in registration_form.password1.errors %} {{ error }} {% endfor %}
Password (again): {{ registration_form.password2 }}
{% for error in registration_form.password2.errors %} {{ error }} {% endfor %}
Prove that you're no spambot: {{ registration_form.captcha|safe }}
{% for error in registration_form.captcha.errors %} {{ error }} {% endfor %}
 

{% endblock %}