From e6def5587a47b47212f21800a0b1800119103b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Sureau?= Date: Fri, 5 Aug 2011 16:44:31 +0200 Subject: [PATCH] Changed password field type in authentication form. --- budget/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/budget/forms.py b/budget/forms.py index 8947f77..3327f21 100644 --- a/budget/forms.py +++ b/budget/forms.py @@ -21,7 +21,7 @@ class ProjectForm(Form): class AuthenticationForm(Form): id = TextField("Project identifier", validators=[Required()]) - password = TextField("Password", validators=[Required()]) + password = PasswordField("Password", validators=[Required()]) submit = SubmitField("Get in")