blob: f223c3caaf4935d825c7ff3c37922c39e84ee8b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}
{% block header %}
<h2>{% block title %}Log In{% endblock %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{{ form.hidden_tag() }}
{{ label_field(form.username) }}
{{ label_field(form.password) }}
{{ form.submit }}
</form>
{% endblock %}
|