aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/authenticate.html
diff options
context:
space:
mode:
authorFrédéric Sureau <fred@milka.(none)>2011-07-29 15:44:15 +0200
committerFrédéric Sureau <fred@milka.(none)>2011-07-29 15:44:15 +0200
commit8dd2091f31305ebf1a33b6203de73c0ca7359c4d (patch)
treef84c9191645be2e03b3d77ea28efe2f52dc70ce6 /budget/templates/authenticate.html
parentc7f9df985900c9daf2d79ad09e4434411adc474a (diff)
downloadihatemoney-mirror-8dd2091f31305ebf1a33b6203de73c0ca7359c4d.zip
ihatemoney-mirror-8dd2091f31305ebf1a33b6203de73c0ca7359c4d.tar.gz
ihatemoney-mirror-8dd2091f31305ebf1a33b6203de73c0ca7359c4d.tar.bz2
Homepage created and project authentication refactored
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 %}