{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}

Create Account

Set your phone and delivery location now so checkout is faster, more accurate, and GPS-ready later.

{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% csrf_token %} {{ form.latitude }} {{ form.longitude }} {{ form.location_accuracy_m }}
{{ form.username }} {% if form.username.errors %}
{{ form.username.errors }}
{% else %}At least 3 characters{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.password }} {% if form.password.errors %}
{{ form.password.errors }}
{% else %}At least 6 characters{% endif %}
{{ form.confirm_password }} {% if form.confirm_password.errors %}
{{ form.confirm_password.errors }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% else %}Required for delivery updates and order confirmation.{% endif %}
{{ form.location_label }} {% if form.location_label.errors %}
{{ form.location_label.errors }}
{% else %}City / area / landmark name shown across the app.{% endif %}
GPS delivery setup

Allow browser location to capture live coordinates and improve delivery accuracy.

{% if form.latitude.value and form.longitude.value %} GPS coordinates are already attached to this account form. {% else %} GPS is optional, but recommended for accurate delivery and support. {% endif %}

{{ form.default_address }} {% if form.default_address.errors %}
{{ form.default_address.errors }}
{% else %}Required so your first checkout starts prefilled.{% endif %}
Enable this if you also want to sell products on Hamro Karma.
{% endblock %}