From 46e945d154ed37a320dc8ba146b7d190e7848feb Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 24 Nov 2013 20:48:41 +0100 Subject: TextField replaced by PasswordField in the ProfileForm form. --- pyaggr3g470r/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyaggr3g470r/forms.py b/pyaggr3g470r/forms.py index 2415ee66..522877b0 100644 --- a/pyaggr3g470r/forms.py +++ b/pyaggr3g470r/forms.py @@ -70,7 +70,7 @@ class ProfileForm(Form): firstname = TextField("First name", [validators.Required("Please enter your first name.")]) lastname = TextField("Last name", [validators.Required("Please enter your last name.")]) email = TextField("Email", [validators.Required("Please enter your email.")]) - password = TextField("Password") + password = PasswordField("Password") submit = SubmitField("Save") def __init__(self, *args, **kwargs): -- cgit