From 1de8ffc01027a76da828168549ab06f29aa830cd Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Thu, 18 Jul 2019 15:58:24 +0100 Subject: [PATCH] Update agreement form content --- app/main/forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/main/forms.py b/app/main/forms.py index efa51ea7b..3257ad84f 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1491,15 +1491,15 @@ class AcceptAgreementForm(StripWhitespaceForm): ) who = RadioField( - 'How do you want to accept the agreement?', + 'Who are you accepting the agreement for?', choices=( ( 'me', - 'In your own name', + 'Yourself', ), ( 'someone-else', - 'On behalf of someone else', + 'Someone else', ), ), validators=[DataRequired()],