aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/authenticate.html
blob: 8b57c6718352d2d57aeef25d8e10429985e4deb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "layout.html" %}
{% block content %}
<h2>Authentication</h2>

{% for errors in form.errors.values() %}
<p class=error>{{ ", ".join(errors) }}</p>
{% endfor %}

<form action="" method="POST" accept-charset="utf-8">
    {{ form.hidden_tag() }}
    
    <p>{{ form.id.label }}<br /> {{ form.id }}</p>
    <p>{{ form.password.label }}<br /> {{ form.password }}</p>
    <p>{{ form.submit }}</p>
</form>
{% endblock %}