{% extends "base.html" %} {% block title %} Create an Accout - Codenode {% endblock %} {% block content %} {#{% if form.errors %}

Please correct the errors below: {{ form.non_field_errors }}

{% endif %}#}

Create an account

{{ form.username }} {% if form.username.errors %} {{ form.username.errors.as_text }} {% endif %}

{{ form.email }} {% if form.email.errors %} {{ form.email.errors.as_text }} {% endif %}

{{ form.password1 }} {% if form.password1.errors %} {{ form.password1.errors.as_text }} {% endif %}

{{ form.password2 }} {% if form.password2.errors %} {{ form.password2.errors.as_text }} {% endif %}

{% endblock %}