{% extends 'registration_base.html' %} {% block title %}Sign Up{% endblock %} {% load crispy_forms_tags %} {% block content %}
{% if form.non_field_errors %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% endif %}

Sign Up


{% csrf_token %}
{% for field in form %}
{{ field | as_crispy_field }}
{% endfor %}
{% endblock %}