diff --git a/app/main/forms.py b/app/main/forms.py index bc013fccc..61f2f4e45 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -19,7 +19,7 @@ mobile_number = "^\\+44[\\d]{10}$" class RegisterUserForm(Form): - name = StringField('Name', + name = StringField('Full name', validators=[DataRequired(message='Name can not be empty')]) email_address = StringField('Email address', validators=[ Length(min=5, max=255), @@ -30,6 +30,6 @@ class RegisterUserForm(Form): mobile_number = StringField('Mobile phone number', validators=[DataRequired(message='Please enter your mobile number'), Regexp(regex=mobile_number, message='Please enter a +44 mobile number')]) - password = PasswordField('Password', + password = PasswordField('Create a password', validators=[DataRequired(message='Please enter your password'), Length(10, 255, message='Password must be at least 10 characters')]) diff --git a/app/templates/email-not-received.html b/app/templates/email-not-received.html index 462fbb961..758589199 100644 --- a/app/templates/email-not-received.html +++ b/app/templates/email-not-received.html @@ -10,7 +10,7 @@ GOV.UK Notify

Check your email address

-

Check your email address is correct and resend a confirmation code.

+

Check your email address is correct and then resend the confirmation code.

@@ -25,4 +25,4 @@ GOV.UK Notify

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/app/templates/register.html b/app/templates/register.html index 7a8f41f8b..e15bc137e 100644 --- a/app/templates/register.html +++ b/app/templates/register.html @@ -12,7 +12,7 @@ GOV.UK Notify | Create an account

If you've used GOV.UK Notify before, sign in to your account.

-

You need to have access to your email account and a mobile phone to register.

+

You need access to your email account and a mobile phone to register.

{{ form.hidden_tag() }} diff --git a/app/templates/text-not-received.html b/app/templates/text-not-received.html index ce8fff18c..4b332c894 100644 --- a/app/templates/text-not-received.html +++ b/app/templates/text-not-received.html @@ -10,7 +10,7 @@ GOV.UK Notify

Check your mobile number

-

Check your mobile phone number is correct and resend a confirmation code.

+

Check your mobile phone number is correct and then resend the confirmation code.

@@ -24,4 +24,4 @@ GOV.UK Notify

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/app/templates/verify.html b/app/templates/verify.html index 729f099c2..42235ee56 100644 --- a/app/templates/verify.html +++ b/app/templates/verify.html @@ -8,10 +8,10 @@ GOV.UK Notify | Confirm email address and mobile number
-

Confirm your email address and mobile number

+

Activate your account

You need to prove the contact details you gave us are yours.

-

We've sent you an email and a text message containing confirmation codes.

+

We've sent you confirmation codes by email and text message. You need to enter both codes here.