{% extends 'accounts/base.html' %} {% load static %} {% block title %}Register - Accounts{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Create Account

Join us today and get started

1
2
3
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %}
Basic Information
{% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
We'll send a verification email to this address
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
Security Settings
{% if form.password1.errors %}
{{ form.password1.errors.0 }}
{% endif %}
Password strength: Weak
At least 8 characters
One uppercase letter
One lowercase letter
One number
One special character
{% if form.password2.errors %}
{{ form.password2.errors.0 }}
{% endif %}
Preferences & Agreement
Notification Preferences
Privacy Settings
{% if social_auth_enabled %}
or sign up with
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}