Inherit email field in information about you form

We were previously not doing this since the field did not have a
description on it. However, I think it's better that the fields match,
so inherit away.
This commit is contained in:
Patrick Smith 2018-10-27 09:55:01 -04:00
parent d696acbaa4
commit 084eaf9e19

View File

@ -167,7 +167,7 @@ class InformationAboutYouForm(ValidatedForm):
lname_request = inherit_field(USER_FIELDS["last_name"])
email_request = EmailField("E-mail Address", validators=[InputRequired(), Email()])
email_request = inherit_field(USER_FIELDS["email"])
phone_number = inherit_field(USER_FIELDS["phone_number"])