{% from theme("security/_macros.html") import render_field_with_errors, render_field, render_button %} {% extends theme("base.html") %} {% block content %}
{% include theme("security/_messages.html") %}

Register

{{ register_user_form.hidden_tag() }} {{ render_field_with_errors(register_user_form.email, class="form-control", placeholder="you@domain.com") }} {{ render_field_with_errors(register_user_form.password, class="form-control") }} {% if register_user_form.password_confirm %} {{ render_field_with_errors(register_user_form.password_confirm, class="form-control") }} {% endif %} {{ render_button(register_user_form.submit, class="btn btn-primary") }}
{% include theme("security/_menu.html") %}
{% endblock %}