aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-04 23:52:57 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-04 23:52:57 +0200
commitdae61aa42792698fdff2870c9a83451f0569d36a (patch)
treea5518fc5ddb5e046e7f13f5dace5fabb3a1ab414 /src/web/forms.py
parentaccount checking without storing the email of the user (diff)
downloadnewspipe-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.py2
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)])
bgstack15