From 4fcaf7d7ec583b794c14597d50abc89ef96450c9 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sat, 23 Jul 2011 15:54:23 +0200 Subject: Kick-start multiple projects support. This commit adds: * support for projects (creation not yet finished) * an authentication mechanism * bugs (basically all the features are not working anymore) --- budget/templates/authenticate.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 budget/templates/authenticate.html (limited to 'budget/templates/authenticate.html') 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 %} +

Login to "{{ project.name }}"

+ +{% for errors in form.errors.values() %} +

{{ ", ".join(errors) }}

+{% endfor %} + +
+ {{ form.hidden_tag() }} + Password: +

{{ form.submit }}

+
+{% endblock %} -- cgit v1.1