From 95f9215546de03f4c7cd10181a839e4dbda6e593 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Thu, 18 Jul 2019 10:46:01 +0100 Subject: [PATCH] Update agreement form content Update agreement form content --- app/main/forms.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index 5eaa400e0..efa51ea7b 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1487,26 +1487,26 @@ class AcceptAgreementForm(StripWhitespaceForm): ) version = StringField( - 'Which version of the agreement are you accepting?' + 'Which version of the agreement do you want to accept?' ) who = RadioField( - 'Who is accepting the agreement?', + 'How do you want to accept the agreement?', choices=( ( 'me', - 'I’m accepting the agreement', + 'In your own name', ), ( 'someone-else', - 'I’m accepting the agreement on behalf of someone else', + 'On behalf of someone else', ), ), validators=[DataRequired()], ) on_behalf_of_name = StringField( - 'Who are you accepting the agreement on behalf of?' + 'What’s their name?' ) on_behalf_of_email = email_address(