mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-17 11:27:27 +08:00
12 lines
390 B
HTML
12 lines
390 B
HTML
{% include "_messages.html" %}
|
|
{% include "_nav.html" %}
|
|
<form action="{{ url_for_security('authenticate') }}" method="POST" name="login_form">
|
|
{{ form.hidden_tag() }}
|
|
{{ form.email.label }} {{ form.email }}<br/>
|
|
{{ form.password.label }} {{ form.password }}<br/>
|
|
{{ form.remember.label }} {{ form.remember }}<br/>
|
|
{{ form.next }}
|
|
{{ form.submit }}
|
|
</form>
|
|
<p>{{ content }}</p>
|