18 lines
724 B
HTML
18 lines
724 B
HTML
{% extends 'admin/master.html' %}
|
|
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/_messages.html" %}
|
|
{% block body %}
|
|
{{ super() }}
|
|
<div class="row-fluid">
|
|
<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, class="btn btn-primary") }}
|
|
</form>
|
|
{% include "security/_menu.html" %}
|
|
</div>
|
|
{% endblock body %} |