[Flask] Simple ERP for a farm.
1
{# -*- mode: web; -*- #}
2
3
{% extends "base.html" %}
4
5
{# the login form #}
6
{% block content %}
7
<formaction="{{ url_for('auth.login') }}"method="POST">
8
<fieldset>
9
<legend>Login</legend>
10
{% for field in form %}
11
{{ field.label() }}
12
{{ field() }}<br/>
13
{% endfor %}
14
</fieldset>
15
</form>
16
{% endblock %}
17