{% extends "base.html" %} {% block title %}Sign Up - New Style{% endblock %} {% block content %}

SIGN UP

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}

Already have an account?

LOG IN
{% endblock %}