diff options
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)]) |