{% extends "base.html" %} {% block title %}Sign Up - BanshiX{% endblock %} {% load django_bootstrap5 static socialaccount %} {% block extra_css %} {% endblock %} {% block extra_js %} {% providers_media_js %} {% endblock %} {% block content %}
BanshiX

Create Your Account

Join BanshiX and start shopping smarter

{% include "socialaccount/snippets/provider_list.html" with process="signup" %}

OR
{% csrf_token %}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors.0 }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{{ form.password1 }}
{% if form.password1.errors %}
{{ form.password1.errors.0 }}
{% endif %}
Password must be at least 8 characters long.
{{ form.password2 }}
{% if form.password2.errors %}
{{ form.password2.errors.0 }}
{% endif %}

Already have an account? Sign in

{% endblock %}