{% import "bootstrap/wtf.html" as wtf %} {% extends "security/index.html" %} {% block title %} Registrar {% endblock %} {% block form_content %}

Registrar

{{ register_user_form.hidden_tag() }} {{ wtf.form_errors(register_user_form) }} {{ wtf.form_field(register_user_form.fullname) }} {{ wtf.form_field(register_user_form.email) }} {{ wtf.form_field(register_user_form.password) }} {% if register_user_form.password_confirm %} {{ wtf.form_field(register_user_form.password_confirm) }} {% endif %} {{ wtf.form_field(register_user_form.submit) }}
{% endblock %}