{% extends "customer/base_auth.html" %} {% block title %}Register{% endblock %} {% block left_heading %}Create Account{% endblock %} {% block left_subtext %}Join and explore exciting events{% endblock %} {% block content %}

Create Account

Join and explore exciting events

{% csrf_token %} {{ form.non_field_errors }}
{{ form.full_name.label_tag }} {{ form.full_name }} {% if form.full_name.errors %}
{{ form.full_name.errors }}
{% endif %}
{{ form.email.label_tag }} {{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.username.label_tag }} {{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.password1.label_tag }} {{ form.password1 }} {% if form.password1.errors %}
{{ form.password1.errors }}
{% endif %}
{{ form.password2.label_tag }} {{ form.password2 }} {% if form.password2.errors %}
{{ form.password2.errors }}
{% endif %}
Already have an account? Login
{% endblock %}