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