{% extends 'base.html' %} {% load static %} {% block content %} Create Account {% csrf_token %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} {{ error }} {% endfor %} {% endif %} {% for field in form %} {{ field.label }} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %} {% endfor %} Sign Up {% endblock %}