From c2c8e75bfa5980b171307c74428d56458bdeb6db Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 24 Nov 2013 19:37:01 +0100 Subject: Updating the password is not required. --- pyaggr3g470r/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyaggr3g470r/forms.py b/pyaggr3g470r/forms.py index 0fcb0c63..2415ee66 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", [validators.Required("Please enter your password.")]) + password = TextField("Password") submit = SubmitField("Save") def __init__(self, *args, **kwargs): -- cgit