{% extends "base.html" %} {% block title %}Registration{% endblock %} {% block heading %}Registration{% endblock %} {% block body %} {% if request and not error %}

Registration successful!

A confirmation email has been sent to {{ request.email }}. You'll need to visit the link provided in that email to confirm your registration.

{{email}}

{% else %}

By creating a patchwork account, you can:

{% if error %} {% endif %}
register
{{ error }}
{{ form.first_name.label_tag }} {% if form.first_name.errors %} {{ form.first_name.errors }} {% endif %} {{ form.first_name }} {% if form.first_name.help_text %}
{{ form.first_name.help_text }}
{% endif %}
{{ form.last_name.label_tag }} {% if form.last_name.errors %} {{ form.last_name.errors }} {% endif %} {{ form.last_name }} {% if form.last_name.help_text %}
{{ form.last_name.help_text }}
{% endif %}
Your name is used to identify you on the site
{{ form.email.label_tag }} {% if form.email.errors %} {{ form.email.errors }} {% endif %} {{ form.email }} {% if form.email.help_text %}
{{ form.email.help_text }}
{% endif %}
Patchwork will send a confirmation email to this address
{{ form.username.label_tag }} {% if form.username.errors %} {{ form.username.errors }} {% endif %} {{ form.username }} {% if form.username.help_text %}
{{ form.username.help_text }}
{% endif %}
{{ form.password.label_tag }} {% if form.password.errors %} {{ form.password.errors }} {% endif %} {{ form.password }} {% if form.password.help_text %}
{{ form.password.help_text }}
{% endif %}
{% endif %} {% endblock %}