mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-29 11:20:24 +08:00
10 lines
516 B
HTML
10 lines
516 B
HTML
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/_messages.html" %}
|
|
<h1>Register</h1>
|
|
<form 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) }}
|
|
{{ render_field_with_errors(register_user_form.password_confirm) }}
|
|
{{ render_field(register_user_form.submit) }}
|
|
</form> |