{% extends 'base.html' %} {% block title %}Register - EventNest{% endblock %} {% block content %}

Create account

Join EventNest and discover amazing events

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

{{ field.help_text }}

{% endif %}
{% endfor %}
{% endblock %}