Merge pull request #954 from alphagov/update-password-hints

Update password hint text
This commit is contained in:
Chris Hill-Scott
2016-09-28 15:00:32 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
You can now create a new password for your account.
</p>
<form method="post" autocomplete="off">
{{ 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") }}
</form>
{% else %}

View File

@@ -15,7 +15,7 @@ Create an account GOV.UK Notify
<form method="post" autocomplete="nope">
{{ textbox(form.name, width='3-4') }}
{{ textbox(form.mobile_number, width='3-4', hint='Well 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}}

View File

@@ -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='Well 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") }}
</form>
</div>