15 lines
623 B
HTML
15 lines
623 B
HTML
{% extends "layout.html" %}
|
|
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block body %}
|
|
<form class='form-horizontal' action="{{ url_for_security('register') }}" method="POST" name="register_user_form">
|
|
{{ 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(register_user_form.submit) }}
|
|
</form>
|
|
{% endblock %}
|