From c4d7dd6b4713d8ecfcffa7cd11beb3a6d7351eec Mon Sep 17 00:00:00 2001 From: Mike Bennett Date: Fri, 1 Mar 2024 18:12:29 +0000 Subject: [PATCH] Change form button text --- app/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/forms.py b/app/forms.py index 8a793e4..47e227d 100644 --- a/app/forms.py +++ b/app/forms.py @@ -33,4 +33,4 @@ class RequestAccessForm(FlaskForm): contact = RadioField('Can we follow up with you at this email address to discuss your planned use of the data file?*', choices=[(True, 'Yes'), (False, 'No')], coerce=bool, validators=[DataRequired()]) primary_use = MultiCheckboxField('What is your planned use for the data? (check all that apply)*', choices=use_choices, validators=[MultiCheckboxAtLeastOne()]) additional_info = TextAreaField('Tell us more about how you plan to use the data!') - submit = SubmitField('Request Access') + submit = SubmitField('Send link')