{% extends "main/base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Create a New Account {% endblock %} {% block content %}
{% if not form.is_valid %}

Create a new account



Enter the following information to create a new account

{% csrf_token %}

{{ form | crispy }}


{% else %}

Your account has been successfully created


Dear Member,

Your account has been created and it is ready to use.
Continue to your profile page.

{% endif %}
{% endblock %}