Skip to content

Commit e741420

Browse files
Updates for GPREG-12832
1 parent af24b73 commit e741420

File tree

3 files changed

+7
-38
lines changed

3 files changed

+7
-38
lines changed

app/views/live/check-answers-1.html

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ <h2 class="nhsuk-heading-m">
462462
},
463463
{
464464
key: {
465-
text: "Current GP surgery you want to leave"
465+
text: "Current GP"
466466
},
467467
value: {
468468
text: data['select-gp-address']
@@ -479,24 +479,7 @@ <h2 class="nhsuk-heading-m">
479479
},
480480
{
481481
key: {
482-
text: "Do you know the postcode of where you were living when you last registered with a GP surgery in the UK?"
483-
},
484-
value: {
485-
text: data['do-you-know-previous-postcode']
486-
},
487-
actions: {
488-
items: [
489-
{
490-
href: "do-you-know-previous-postcode-gp-has?return=true",
491-
text: "Change",
492-
visuallyHiddenText: "date of birth"
493-
}
494-
]
495-
}
496-
},
497-
{
498-
key: {
499-
text: "What is the postcode of where you were living when you last registered with a GP surgery in the UK?"
482+
text: "Postcode previous GP has"
500483
},
501484
value: {
502485
text: data['gp-postcode-prev']

app/views/live/do-you-know-previous-postcode-gp-has.html

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@
66
{% extends 'layout.html' %}
77

88
{% if (data['who-is-being-registered'] === "dependant") %}
9-
{% set heading = "Do you know the postcode used when " + data ['name-first-name'] + " registered with " + data.presets[0]['gpsurgery'] + "?" %}
10-
{% set hintText = 'This will be the postcode they used the last time they registered with a GP surgery.' %}
9+
{% set heading = "You told us " + data ['name-first-name'] + "is registered with " + data.presets[0]['gpsurgery'] + "?" %}
1110
{% else %}
12-
{% set heading = 'Do you know the postcode used when you registered with ' + data.presets[0]['gpsurgery'] + '?' %}
13-
{% set hintText = 'This will be the postcode you used the last time you registered with a GP surgery.' %}
11+
{% set heading = 'You told us you are registered with ' + data.presets[0]['gpsurgery'] + '?' %}
1412
{% endif %}
1513

1614
{% block pageTitle %}
@@ -42,11 +40,8 @@
4240
}
4341
}) %}
4442

45-
{{ hint({
46-
"text": hintText,
47-
"classes": "nhsuk-u-margin-bottom-4"
48-
}) }}
49-
43+
<p>We need to know the postcode of the address you used when you registered with this surgery. We'll use it to match you to your medical record.</p>
44+
<h2 style="font-size: 1.5rem; padding-top: 0;">Do you know the postcode you used when you registered with this surgery?</h2>
5045
{{ radios({
5146
"idPrefix": "do-you-know-previous-postcode",
5247
"name": "do-you-know-previous-postcode",

app/views/live/what-is-previous-postcode-gp-has.html

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77

88
{% if (data['who-is-being-registered'] === "dependant") %}
99
{% set heading = "What postcode did " + data['name-first-name'] + " use when they registered with " + data.presets[0]['gpsurgery'] + "?" %}
10-
{% set hintText = 'This will be the postcode they used the last time they registered with a GP surgery.' %}
1110
{% else %}
12-
{% set heading = 'What postcode did you use when you registered with ' + data.presets[0]['gpsurgery'] + '?' %}
13-
{% set hintText = 'This will be the postcode you used the last time you registered with a GP surgery.' %}
11+
{% set heading = 'What postcode did you use to register with ' + data.presets[0]['gpsurgery'] + '?' %}
1412
{% endif %}
1513

1614
{% block pageTitle %}
@@ -42,17 +40,10 @@
4240
}
4341
}) %}
4442

45-
{{ hint({
46-
"text": hintText
47-
}) }}
48-
4943
{{ input({
5044
label: {
5145
"text": "Postcode"
5246
},
53-
"hint": {
54-
"text": "For example LS13 9PO"
55-
},
5647
"classes": "nhsuk-input--width-10",
5748
"id": "gp-postcode-prev",
5849
"name": "gp-postcode-prev",

0 commit comments

Comments
 (0)