mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-22 12:40:13 +08:00
10 lines
425 B
HTML
10 lines
425 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('send_login') }}" method="POST" name="login_form">
|
|
{{ login_form.hidden_tag() }}
|
|
{{ render_field_with_errors(login_form.email) }}
|
|
{{ render_field(login_form.next) }}
|
|
{{ render_field(login_form.submit) }}
|
|
</form>
|
|
{% include "security/_help.html" %} |