{% extends "wedding/blocks/base.html" %} {% load static %} {% block title %} Account Creation {% endblock %} {% block content %}

Account Creation

{% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% csrf_token %}
{% endblock %}