Put hidden email field on register from invite page

Password managers will try to guess what they should save as a username
by looking at the fields on the page where you set up your password.

When registering from an invite the email address (what we use as a
username) is predefined, and only shown on the page as text, not an
input.

This commit also adds a hidden input field for password managers to pick
up.

Adapted from: https://github.com/UKGovernmentBEIS/beis-opss-psd/blob/master/app/views/users/complete_registration.html.erb#L29-L36
This commit is contained in:
Chris Hill-Scott
2020-08-10 15:56:48 +01:00
parent 3573ce1437
commit 834b0fc3d5
2 changed files with 56 additions and 9 deletions

View File

@@ -17,6 +17,9 @@ Create an account
<span class="nowrap">{{invited_user.email_address}}</span>
</p>
{% call form_wrapper() %}
<div class="visually-hidden">
<input type="email" name="username" id="username" value="{{ invited_user.email_address }}" disabled="disabled" tabindex="-1" aria-hidden="true" autocomplete="username" />
</div>
{{ textbox(form.name, width='3-4') }}
{% if invited_user.auth_type == 'sms_auth' %}
<div class="extra-tracking">

View File

@@ -203,7 +203,7 @@ def test_register_with_existing_email_sends_emails(
("f.last@example.com", ""),
("f.m.last@example.com", ""),
])
def test_shows_registration_page_from_invite(
def test_shows_name_on_registration_page_from_invite(
client_request,
fake_uuid,
email_address,
@@ -226,6 +226,48 @@ def test_shows_registration_page_from_invite(
assert page.select_one('input[name=name]')['value'] == expected_value
def test_shows_email_address_on_registration_page_from_invite(
client_request,
fake_uuid,
):
with client_request.session_transaction() as session:
session['invited_user'] = {
'id': fake_uuid,
'service': fake_uuid,
'from_user': "",
'email_address': "test@example.com",
'permissions': ["manage_users"],
'status': "pending",
'created_at': datetime.utcnow(),
'auth_type': 'sms_auth',
'folder_permissions': [],
}
page = client_request.get('main.register_from_invite')
assert normalize_spaces(page.select_one('main p').text) == (
'Your account will be created with this email address: test@example.com'
)
hidden_input = page.select_one('form .visually-hidden input')
for attr, value in (
('type', 'email'),
('name', 'username'),
('id', 'username'),
('value', 'test@example.com'),
('disabled', "disabled"),
('tabindex', '-1'),
('aria-hidden', 'true'),
('autocomplete', 'username'),
):
assert hidden_input[attr] == value
@pytest.mark.parametrize('extra_data', (
{},
# The username field is present in the page but the POST request
# should ignore it
{'username': 'invited@user.com'},
{'username': 'anythingelse@example.com'},
))
def test_register_from_invite(
client,
fake_uuid,
@@ -233,6 +275,7 @@ def test_register_from_invite(
mock_register_user,
mock_send_verify_code,
mock_accept_invite,
extra_data,
):
invited_user = InvitedUser(
{
@@ -251,14 +294,15 @@ def test_register_from_invite(
session['invited_user'] = invited_user.serialize()
response = client.post(
url_for('main.register_from_invite'),
data={
'name': 'Registered in another Browser',
'email_address': invited_user.email_address,
'mobile_number': '+4407700900460',
'service': str(invited_user.id),
'password': 'somreallyhardthingtoguess',
'auth_type': 'sms_auth'
}
data=dict(
name='Registered in another Browser',
email_address=invited_user.email_address,
mobile_number='+4407700900460',
service=str(invited_user.id),
password='somreallyhardthingtoguess',
auth_type='sms_auth',
**extra_data
),
)
assert response.status_code == 302
assert response.location == url_for('main.verify', _external=True)