mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-15 01:10:54 +08:00
9 lines
488 B
HTML
9 lines
488 B
HTML
{% include "security/messages.html" %}
|
|
<h1>Register</h1>
|
|
<form action="{{ url_for('flask_security.register') }}" method="POST" name="register_user_form">
|
|
{{ register_user_form.hidden_tag() }}
|
|
{{ register_user_form.email.label }} {{ register_user_form.email }}<br/>
|
|
{{ register_user_form.password.label }} {{ register_user_form.password }}<br/>
|
|
{{ register_user_form.password_confirm.label }} {{ register_user_form.password_confirm }}<br/>
|
|
{{ register_user_form.submit }}
|
|
</form> |