mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-04 17:20:07 +08:00
11 lines
393 B
HTML
11 lines
393 B
HTML
{% include "_messages.html" %}
|
|
{% include "_nav.html" %}
|
|
<form action="{{ url_for('flask_security.register') }}" method="POST" name="register_form">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.email.label }} {{ form.email }}<br/>
|
|
{{ form.password.label }} {{ form.password }}<br/>
|
|
{{ form.password_confirm.label }} {{ form.password_confirm }}<br/>
|
|
{{ form.submit }}
|
|
</form>
|
|
<p>{{ content }}</p>
|