{% extends 'base.html' %} {% load static %} {% block content %}
{% csrf_token %}
codingwithmitch logo

Register an account

{% for field in registration_form %}

{% for error in field.errors %}

{{ error }}

{% endfor %}

{% endfor %} {% if registration_form.non_field_errors %}

{{registration_form.non_field_errors}}

{% endif %}
{% endblock content %}