{% extends 'auth_base.html' %} {% load socialaccount %} {% block title %}Create Account{% endblock %} {% block content %}

Create Account

Sign up to get started

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
{% if form.email.errors %} {% endif %}
{% if form.password1.errors %} {% endif %}
{% if form.password2.errors %} {% endif %}
{% endblock %}