aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/web/forms.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/newspipe/web/forms.py b/newspipe/web/forms.py
index 71ebcd9c..ccc47a87 100644
--- a/newspipe/web/forms.py
+++ b/newspipe/web/forms.py
@@ -167,13 +167,7 @@ class UserForm(FlaskForm):
lazy_gettext("Nickname"),
[validators.Required(lazy_gettext("Please enter your nickname."))],
)
- password = PasswordField(
- lazy_gettext("Password"),
- [
- validators.Required(lazy_gettext("Please enter a password.")),
- validators.Length(min=20, max=500),
- ],
- )
+ password = PasswordField(lazy_gettext("Password"))
automatic_crawling = BooleanField(lazy_gettext("Automatic crawling"), default=True)
submit = SubmitField(lazy_gettext("Save"))
bgstack15