mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-22 12:40:13 +08:00
10 lines
288 B
HTML
10 lines
288 B
HTML
{% include "_messages.html" %}
|
|
{% include "_nav.html" %}
|
|
<form action="{{ url_for('flask_security.send_login') }}" method="POST" name="login_form">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.email.label }} {{ form.email }}<br/>
|
|
{{ form.next }}
|
|
{{ form.submit }}
|
|
</form>
|
|
<p>{{ content }}</p>
|