|
| 1 | +{% extends 'layout.html' %} |
| 2 | + |
| 3 | +{% block pageTitle %} |
| 4 | + Content page template - NHS.UK prototype kit |
| 5 | +{% endblock %} |
| 6 | + |
| 7 | +{% block beforeContent %} |
| 8 | + {{ breadcrumb({ |
| 9 | + href: "/", |
| 10 | + text: "Home" |
| 11 | + }) }} |
| 12 | +{% endblock %} |
| 13 | + |
| 14 | +{% block content %} |
| 15 | + <div class="nhsuk-grid-row"> |
| 16 | + |
| 17 | + <div class="nhsuk-grid-column-two-thirds"> |
| 18 | + |
| 19 | + <h1> |
| 20 | + How we contact you |
| 21 | + </h1> |
| 22 | + |
| 23 | + <p> |
| 24 | + The NHS and Hilltop surgery may need to contact you about: |
| 25 | + <ul> |
| 26 | + <li>this registration application</li> |
| 27 | + <li>important information about your health</li> |
| 28 | + <li>screening and other healthcare services</li> |
| 29 | + </ul> |
| 30 | + </p> |
| 31 | + |
| 32 | +<div class="govuk-inset-text"> |
| 33 | + Your contact will not be used for marketing or shared with anyone outside your GP surgery or the NHS. |
| 34 | +</div> |
| 35 | +<legend>Tell us how you want to be contacted (optional)</legend> |
| 36 | + |
| 37 | + {{ input({ |
| 38 | + label: { |
| 39 | + "text": "Home telephone number (optional)" |
| 40 | + }, |
| 41 | + "classes": "nhsuk-input nhsuk-input--width-20", |
| 42 | + "id": "contact-home-phone", |
| 43 | + "name": "contact-home-phone", |
| 44 | + "spellcheck": false, |
| 45 | + "value": data['contact-home-phone'] |
| 46 | + }) }} |
| 47 | + |
| 48 | + {{ input({ |
| 49 | + label: { |
| 50 | + "text": "Mobile telephone number (optional)" |
| 51 | + }, |
| 52 | + "classes": "nhsuk-input nhsuk-input--width-20", |
| 53 | + "id": "contact-mobile", |
| 54 | + "name": "contact-mobile", |
| 55 | + "spellcheck": false, |
| 56 | + "value": data['contact-mobile'] |
| 57 | + }) }} |
| 58 | + |
| 59 | + {{ input({ |
| 60 | + label: { |
| 61 | + "text": "Email address (optional)" |
| 62 | + }, |
| 63 | + "id": "contact-email", |
| 64 | + "name": "contact-email", |
| 65 | + "spellcheck": false, |
| 66 | + "value": data['contact-email'] |
| 67 | + }) }} |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | + </div> |
| 72 | + |
| 73 | + </div> |
| 74 | +{% endblock %} |
0 commit comments