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.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/budget/templates/authenticate.html b/budget/templates/authenticate.html
new file mode 100644
index 0000000..c745e9f
--- /dev/null
+++ b/budget/templates/authenticate.html
@@ -0,0 +1,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 %}