aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-11-24 19:37:01 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-11-24 19:37:01 +0100
commitc2c8e75bfa5980b171307c74428d56458bdeb6db (patch)
treeb6bf82d1615e7972282c325dfb9abc2ce4e25cb7
parentIt is now possible to update information about a user (first name, last name,... (diff)
downloadnewspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.tar.gz
newspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.tar.bz2
newspipe-c2c8e75bfa5980b171307c74428d56458bdeb6db.zip
Updating the password is not required.
-rw-r--r--pyaggr3g470r/forms.py2
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):
bgstack15