From c7f9df985900c9daf2d79ad09e4434411adc474a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sureau?= Date: Tue, 26 Jul 2011 16:03:00 +0200 Subject: Check project id before authentication --- budget/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'budget/forms.py') diff --git a/budget/forms.py b/budget/forms.py index 367be94..0373da8 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -2,7 +2,7 @@ from flaskext.wtf import * from models import Project, Person # define forms -class CreationForm(Form): +class ProjectForm(Form): name = TextField("Project name", validators=[Required()]) id = TextField("Project identifier", validators=[Required()]) password = PasswordField("Password", validators=[Required()]) -- cgit v1.1