{% extends "base.htm" %} {% load i18n %} {% block title %}Create Account{% endblock %} {% block content %}

Create Account

Please fill in the following form.

{% if form.non_field_errors %}

Error:

{{ form.non_field_errors }}
{% endif %}
{{ form.username.label_tag }}*
{{ form.username }}
{% if form.username.help_text %}
{{ form.username.help_text }}
{% endif %} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.email.label_tag }}*
{{ form.email }}
{% if form.email.help_text %}
{{ form.email.help_text }}
{% endif %} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.first_name.label_tag }}*
{{ form.first_name }}
{% if form.first_name.help_text %}
{{ form.first_name.help_text }}
{% endif %} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name.label_tag }}*
{{ form.last_name }}
{% if form.last_name.help_text %}
{{ form.last_name.help_text }}
{% endif %} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.password1.label_tag }}*
{{ form.password1 }}
{% if form.password1.help_text %}
{{ form.password1.help_text }}
{% endif %} {% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2.label_tag }}*
{{ form.password2 }}
{% if form.password2.help_text %}
{{ form.password2.help_text }}
{% endif %} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
{% endblock %}