{% extends "structure/_base.html" %} {% import "macros/_wtf.html" as wtf %} {% block title %}Register {% endblock title %} {% block content %}

Register | Login


{{ register_user_form.hidden_tag() }} {{ wtf.regular_field(register_user_form.name, autofocus="autofocus") }} {{ wtf.regular_field(register_user_form.email, description="Will be kept very private") }} {{ wtf.regular_field(register_user_form.password) }} {% if register_user_form.password_confirm %} {{ wtf.regular_field(register_user_form.password_confirm) }} {% endif %}
{% endblock content %}