diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-04-04 23:52:57 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-04-04 23:52:57 +0200 |
commit | dae61aa42792698fdff2870c9a83451f0569d36a (patch) | |
tree | a5518fc5ddb5e046e7f13f5dace5fabb3a1ab414 /src/web/forms.py | |
parent | account checking without storing the email of the user (diff) | |
download | newspipe-dae61aa42792698fdff2870c9a83451f0569d36a.tar.gz newspipe-dae61aa42792698fdff2870c9a83451f0569d36a.tar.bz2 newspipe-dae61aa42792698fdff2870c9a83451f0569d36a.zip |
Updated signup form.
Diffstat (limited to 'src/web/forms.py')
-rw-r--r-- | src/web/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py index 90e90584..eb571cc8 100644 --- a/src/web/forms.py +++ b/src/web/forms.py @@ -48,7 +48,7 @@ class SignupForm(Form): email = EmailField(lazy_gettext("Email"), [validators.Length(min=6, max=35), validators.Required( - lazy_gettext("Please enter your email address (for account activation, won't be stored)."))]) + lazy_gettext("Please enter your email address (only for account activation, won't be stored)."))]) password = PasswordField(lazy_gettext("Password"), [validators.Required(lazy_gettext("Please enter a password.")), validators.Length(min=6, max=100)]) |