Merge pull request #1418 from alphagov/local-email-address-for-local-government

Tell local government folk that they can sign up
This commit is contained in:
Chris Hill-Scott
2017-08-11 16:20:06 +01:00
committed by GitHub
4 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ class ValidGovEmail:
def __call__(self, form, field):
from flask import url_for
message = (
'Enter a central government email address.'
'Enter a government email address.'
' If you think you should have access'
' <a href="{}">contact us</a>').format(url_for('main.support'))
if not is_gov_user(field.data.lower()):

View File

@@ -13,7 +13,7 @@ Create an account
<h1 class="heading-large">Create an account</h1>
<form method="post" novalidate>
{{ 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.email_address, hint="Must be from a 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') }}
<input class="visually-hidden" aria-hidden="true" tabindex="-1" id="defeat-chrome-autocomplete">
{{ textbox(form.password, hint="At least 8 characters", width='3-4') }}

View File

@@ -28,7 +28,7 @@ def test_valid_email_not_in_valid_domains(
):
form = RegisterUserForm(email_address="test@test.com", mobile_number='441231231231')
assert not form.validate()
assert "Enter a central government email address" in form.errors['email_address'][0]
assert "Enter a government email address" in form.errors['email_address'][0]
def test_valid_email_in_valid_domains(

View File

@@ -96,7 +96,7 @@ def test_should_return_200_when_email_is_not_gov_uk(
'password': 'validPassword!'})
assert response.status_code == 200
assert 'Enter a central government email address' in response.get_data(as_text=True)
assert 'Enter a government email address' in response.get_data(as_text=True)
def test_should_add_user_details_to_session(