{% extends "security/base_security.html" %} {% block body %} {% from "security/_macros.html" import render_field_with_errors, render_field %} {% include "security/_messages.html" %}

Register

{{ register_user_form.hidden_tag() }} {{ render_field_with_errors(register_user_form.email) }} {{ render_field_with_errors(register_user_form.password) }} {% if register_user_form.password_confirm %} {{ render_field_with_errors(register_user_form.password_confirm) }} {% endif %} {{ render_field_with_errors(register_user_form.name) }}

NB: Your password is not stored securely. Do not use a sensitive password and do not choose a password you use elsewhere.

{{ render_field(register_user_form.submit, class="btn btn-default") }}
{# % include "security/_menu.html" % #} {% endblock body %}