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 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
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.