Allow for short project names

This commit is contained in:
crunk 2022-01-23 11:54:31 +01:00
parent 69256d92b2
commit 6486d4b0a0

View File

@ -13,7 +13,7 @@ class UploadForm(FlaskForm):
sitename = StringField(
"Name of your website:",
validators=[validators.InputRequired(), Length(6, 100)],
validators=[validators.InputRequired(), Length(2, 100)],
)
zipfile = FileField(
"Upload your zip file with content here:",