{% extends 'admin/master.html' %} {% from "security/_macros.html" import render_field_with_errors, render_field, render_button %} {% include "security/_messages.html" %} {% block head %} {% endblock head %} {% block page_body %}

Sign up

{{ register_user_form.hidden_tag() }} {{ render_field_with_errors(register_user_form.email, 'fa fa-at') }} {{ render_field_with_errors(register_user_form.password, 'fa fa-lock') }} {% if register_user_form.password_confirm %} {{ render_field_with_errors(register_user_form.password_confirm, 'fa fa-lock') }} {% endif %}
{{ render_button(register_user_form.submit, class="btn btn-primary btn-block btn-flat") }}

I already have an account

{% endblock page_body %}