{% import 'macros/flash.html' as flash with context %} {% extends "public/index.html" %} {% block page_content %}
{{ form.csrf_token }}
{% if form.name.errors %} {% for error in form.name.errors %} {{ error }} {% endfor %} {% endif %}
{% if form.email.errors %} {% for error in form.email.errors %} {{ error }} {% endfor %} {% endif %}
{% if form.password.errors %} {% for error in form.password.errors %} {{ error }} {% endfor %} {% endif %}
{% if form.confirm.errors %} {% for error in form.confirm.errors %} {{ error }} {% endfor %} {% endif %}

Already Registered? Login

{% endblock page_content %}