From 74efba61db1e408c42037936cdc97af0fa2532f0 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 28 Sep 2016 14:57:50 +0100 Subject: [PATCH] Update password hint text --- app/templates/views/new-password.html | 2 +- app/templates/views/register-from-invite.html | 2 +- app/templates/views/register.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/views/new-password.html b/app/templates/views/new-password.html index 511bff626..cdae19079 100644 --- a/app/templates/views/new-password.html +++ b/app/templates/views/new-password.html @@ -18,7 +18,7 @@ You can now create a new password for your account.

- {{ textbox(form.new_password, hint="Your password must have at least 10 characters") }} + {{ textbox(form.new_password, hint="At least 8 characters") }} {{ page_footer("Continue") }}
{% else %} diff --git a/app/templates/views/register-from-invite.html b/app/templates/views/register-from-invite.html index 014b03eda..1232e838a 100644 --- a/app/templates/views/register-from-invite.html +++ b/app/templates/views/register-from-invite.html @@ -15,7 +15,7 @@ Create an account – GOV.UK Notify
{{ textbox(form.name, width='3-4') }} {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} - {{ textbox(form.password, hint="Your password must have at least 10 characters", width='3-4') }} + {{ textbox(form.password, hint="At least 8 characters", width='3-4') }} {{ page_footer("Continue") }} {{form.service}} {{form.email_address}} diff --git a/app/templates/views/register.html b/app/templates/views/register.html index 86507838f..59ad9a88e 100644 --- a/app/templates/views/register.html +++ b/app/templates/views/register.html @@ -15,7 +15,7 @@ Create an account – GOV.UK Notify {{ textbox(form.name, width='3-4') }} {{ textbox(form.email_address, hint="Must be from a central government organisation", width='3-4', safe_error_message=True) }} {{ textbox(form.mobile_number, width='3-4', hint='We’ll send you a security code by text message') }} - {{ textbox(form.password, hint="At least 10 characters", width='3-4') }} + {{ textbox(form.password, hint="At least 8 characters", width='3-4') }} {{ page_footer("Continue") }}