Normalize location and style for submiting the form

This commit is contained in:
Luis Cielak
2018-07-30 15:28:12 -04:00
parent bd58579c18
commit 04e532c8db
3 changed files with 17 additions and 7 deletions

View File

@@ -8,12 +8,12 @@ from .validators import IsNumber, Alphabet
class POCForm(ValidatedForm):
fname_poc = StringField(
"POC First Name",
validators=[Required(), Alphabet()]
validators=[Required()]
)
lname_poc = StringField(
"POC Last Name",
validators=[Required(), Alphabet()]
validators=[Required()]
)
email_poc = EmailField(