Skip to content

Commit

Permalink
Replace name in form (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaldogsbody committed Feb 26, 2024
1 parent 05fa1c5 commit af90c7b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ def __call__(self, form, field):
class RequestAccessForm(FlaskForm):
# form based on User properties
email = StringField('Email', validators=[DataRequired()])
first_name = StringField('First Name', validators=[DataRequired()])
last_name = StringField('Last Name', validators=[DataRequired()])
name = StringField('Name', validators=[DataRequired()])
organisation = StringField('Organisational Affiliation', validators=[DataRequired()])
contact = BooleanField('Can we follow up with you at this email address to discuss your planned use of the data file?')
primary_use = MultiCheckboxField('What is your planned use for the data? (check all that apply)', choices=use_choices, validators=[MultiCheckboxAtLeastOne()])
Expand Down

0 comments on commit af90c7b

Please sign in to comment.