mirror of
https://github.com/wassname/flask-security.git
synced 2026-06-27 16:10:11 +08:00
12 lines
563 B
HTML
12 lines
563 B
HTML
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/_messages.html" %}
|
|
<h1>Login</h1>
|
|
<form action="{{ url_for_security('login') }}" method="POST" name="login_user_form">
|
|
{{ login_user_form.hidden_tag() }}
|
|
{{ render_field_with_errors(login_user_form.email) }}
|
|
{{ render_field_with_errors(login_user_form.password) }}
|
|
{{ render_field_with_errors(login_user_form.remember) }}
|
|
{{ render_field(login_user_form.next) }}
|
|
{{ render_field(login_user_form.submit) }}
|
|
</form>
|
|
{% include "security/_menu.html" %} |