aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/authenticate.html
blob: c745e9f9f9fb23c8363e36b8ca628b21a3f6d280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "layout.html" %}
{% block content %}
<h2>Login to "{{ project.name }}"</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() }}
    Password: <input type="password" name="password" value="">
    <p>{{ form.submit }}</p>
</form>
{% endblock %}