{% include 'public_header.html' %}

Create a New Account

{% csrf_token %}
{{ form.username.label }} {{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% endif %}
{{ form.email.label }} {{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.mobile_number.label }} {{ form.mobile_number }} {% if form.mobile_number.errors %}
{{ form.mobile_number.errors }}
{% endif %}
{{ form.password.label }} {{ form.password }} {% if form.password.errors %}
{{ form.password.errors }}
{% endif %}
{{ form.confirm_password.label }} {{ form.confirm_password }} {% if form.confirm_password.errors %}
{{ form.confirm_password.errors }}
{% endif %}
{% include 'public_footer.html' %}