diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-24 19:37:01 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-24 19:37:01 +0100 |
commit | c2c8e75bfa5980b171307c74428d56458bdeb6db (patch) | |
tree | b6bf82d1615e7972282c325dfb9abc2ce4e25cb7 /pyaggr3g470r/forms.py | |
parent | It is now possible to update information about a user (first name, last name,... (diff) | |
download | newspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.tar.gz newspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.tar.bz2 newspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.zip |
Updating the password is not required.
Diffstat (limited to 'pyaggr3g470r/forms.py')
-rw-r--r-- | pyaggr3g470r/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |