{% extends 'app/base.html' %} {% load static %} {% block title %} Registration {% endblock title %} {% block content %}

Customer Registration


{% if form.non_field_error %} {% for error in form_non_field_error %}

{{error}}

{% endfor %} {% endif %} {% if messages %} {% for msg in messages %} {% endfor %} {% endif %}
{% csrf_token %} {% for fm in form %} {{ fm.label_tag }} {{fm}} {{fm.errors|striptags}}
{% endfor %}
Already have account ? Login Now
{% if form.non_field_errors %} {% for error in form.non_field_errors %}

{{error}}

{% endfor %} {% endif %}
{% endblock content %}