aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/authenticate.html
diff options
context:
space:
mode:
Diffstat (limited to 'budget/templates/authenticate.html')
-rw-r--r--budget/templates/authenticate.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/budget/templates/authenticate.html b/budget/templates/authenticate.html
index c745e9f..8b57c67 100644
--- a/budget/templates/authenticate.html
+++ b/budget/templates/authenticate.html
@@ -1,6 +1,6 @@
{% extends "layout.html" %}
{% block content %}
-<h2>Login to "{{ project.name }}"</h2>
+<h2>Authentication</h2>
{% for errors in form.errors.values() %}
<p class=error>{{ ", ".join(errors) }}</p>
@@ -8,7 +8,9 @@
<form action="" method="POST" accept-charset="utf-8">
{{ form.hidden_tag() }}
- Password: <input type="password" name="password" value="">
+
+ <p>{{ form.id.label }}<br /> {{ form.id }}</p>
+ <p>{{ form.password.label }}<br /> {{ form.password }}</p>
<p>{{ form.submit }}</p>
</form>
{% endblock %}