{% extends "bootstrap/base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% from "admin/layout.html" import messages with context %} {% block title %} Admin login page {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}

The default Admin login page


{{messages(class="danger")}}

{{ form.csrf_token }} {{ wtf.form_field(form.username, placeholder="Enter the username here", id="usernameField") }} {{ wtf.form_field(form.password, placeholder="Enter the password here", id="passwordField") }}
{% endblock %}