Skip to content

Commit 4e31ef6

Browse files
Update carer-details.html
1 parent 74a08d0 commit 4e31ef6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/views/live/carer-details.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,21 @@
9696
<div class="nhsuk-date-input__item">
9797
<div class="nhsuk-form-group">
9898
<label class="nhsuk-label nhsuk-date-input__label" for="date-of-birth-day" id="date-of-birth-day--label">Day</label>
99-
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-2" id="date-of-birth-day" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ data['parent-date-of-birth'][0].split(',')[0] }}" autocomplete="bday-day">
99+
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-2" id="date-of-birth-day" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ (data['parent-date-of-birth'] | default('')).split(',')[0] }}" autocomplete="bday-day">
100100
</div>
101101
</div>
102102

103103
<div class="nhsuk-date-input__item">
104104
<div class="nhsuk-form-group">
105105
<label class="nhsuk-label nhsuk-date-input__label" for="date-of-birth-month" id="date-of-birth-month--label">Month</label>
106-
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-2" id="date-of-birth-month" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ data['parent-date-of-birth'][0].split(',')[1] }}" autocomplete="bday-month">
106+
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-2" id="date-of-birth-month" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ (data['parent-date-of-birth'] | default('')).split(',')[1] }}" autocomplete="bday-month">
107107
</div>
108108
</div>
109109

110110
<div class="nhsuk-date-input__item">
111111
<div class="nhsuk-form-group">
112112
<label class="nhsuk-label nhsuk-date-input__label" for="date-of-birth-year" id="date-of-birth-year--label">Year</label>
113-
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-4" id="date-of-birth-year" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ data['parent-date-of-birth'][0].split(',')[1] }}" autocomplete="bday-year">
113+
<input class="nhsuk-input nhsuk-date-input__input nhsuk-input--width-4" id="date-of-birth-year" name="[parent-date-of-birth]" type="text" pattern="[0-9]*" inputmode="numeric" spellcheck="false" value="{{ (data['parent-date-of-birth'] | default('')).split(',')[2] }}" autocomplete="bday-year">
114114
</div>
115115
</div>
116116
</div>

0 commit comments

Comments
 (0)