From dae61aa42792698fdff2870c9a83451f0569d36a Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 4 Apr 2018 23:52:57 +0200 Subject: Updated signup form. --- src/web/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/forms.py') 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)]) -- cgit