Update form fields and copy

This commit is contained in:
richard-dds
2018-08-15 11:28:05 -04:00
parent a9d3449548
commit e0ac7bfe5f
2 changed files with 16 additions and 14 deletions

View File

@@ -20,16 +20,16 @@ class POCForm(ValidatedForm):
am_poc = BooleanField(
"I am the technical POC.",
"I am the Workspace Owner.",
default=False,
false_values=(False, "false", "False", "no", "")
)
fname_poc = StringField("POC First Name", validators=[Required()])
fname_poc = StringField("First Name", validators=[Required()])
lname_poc = StringField("POC Last Name", validators=[Required()])
lname_poc = StringField("Last Name", validators=[Required()])
email_poc = EmailField("POC Email Address", validators=[Required(), Email()])
email_poc = EmailField("Email Address", validators=[Required(), Email()])
dodid_poc = StringField(
"DOD ID", validators=[Required(), Length(min=10), IsNumber()]