{% extends 'diary/base.html' %} {% block title %}Register{% endblock %} {% block content %}

Create an account 📓

{% csrf_token %} {% for field in form %}
{% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %} {{ field.errors|join:', ' }} {% endif %}
{% endfor %}
{% endblock %}