{% extends "django_registration/registration_base.html" %} {% load staticfiles %} {% load i18n %} {% block title %}{% trans "Register for an account" %}{% endblock %} {% block content %}
Create your account
{% csrf_token %} {% if form.errors %}

You have some errors in your form. Please complete the form according to the helptexts. Avoid spaces and special characters in the username.

Please use the forget password link if you think you already had an account.

{% endif %} {{ form.username }}
Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. No spaces please.
{{ form.email }} {{ form.password1 }} {{ form.password2 }}
Enter the same password as before, for verification.
{# Assumes you setup the password_reset view in your URLconf #}

Lost password?

{% endblock %}