|
| 1 | +{% set serviceHome = '/live/start' %} |
| 2 | +{% set servicePhase = 'beta' %} |
| 3 | +{% set feedbackType = 'step' %} |
| 4 | +{% set section = '3' %} |
| 5 | + |
| 6 | +{% extends 'layout.html' %} |
| 7 | + |
| 8 | +{% set heading = 'Faith and beliefs' %} |
| 9 | + |
| 10 | +{% block pageTitle %} |
| 11 | + {{ heading }} - {{ data.presets[0].servicename }} - NHS |
| 12 | +{% endblock %} |
| 13 | + |
| 14 | +{% block outerContent %} |
| 15 | + {{ backLink({ |
| 16 | + "href": "check-answers-1", |
| 17 | + "text": "Go back", |
| 18 | + "classes": "nhsuk-u-margin-top-4 nhsuk-u-margin-bottom-0" |
| 19 | + }) }} |
| 20 | +{% endblock %} |
| 21 | + |
| 22 | +{% block content %} |
| 23 | + |
| 24 | + <div class="nhsuk-grid-row"> |
| 25 | + <div class="nhsuk-grid-column-two-thirds"> |
| 26 | + |
| 27 | + <form action="" method="post" autocomplete="off"> |
| 28 | + |
| 29 | + {% include 'live/includes/step.html' %} |
| 30 | + |
| 31 | + {% call fieldset({ |
| 32 | + legend: { |
| 33 | + text: heading, |
| 34 | + classes: "nhsuk-fieldset__legend--l", |
| 35 | + isPageHeading: true |
| 36 | + } |
| 37 | + }) %} |
| 38 | + |
| 39 | + <p>If you have chosen to donate your organs when you die, the NHS will talk to your family for their support.</p> |
| 40 | + <p>When they talk to your family, they can explain your faith and beliefs were important to you and help your family support your decision in line with your faith and belief system.</p> |
| 41 | + <p><a href="https://www.organdonation.nhs.uk/about-organ-donation/your-faith-and-beliefs/our-faith-and-beliefs-commitment/" target="_blank">Visit the NHS faith and beliefs commitment (opens in a new tab)</a></p> |
| 42 | + |
| 43 | + <legend class="govuk-fieldset__legend govuk-fieldset__legend--l"> |
| 44 | + <h3 class="govuk-fieldset__heading">Would you like NHS staff to discuss your faith and beliefs with your family?</h3> |
| 45 | + </legend> |
| 46 | + |
| 47 | + {{ radios({ |
| 48 | + "idPrefix": "organ-faith", |
| 49 | + "name": "organ-faith", |
| 50 | + "items": [ |
| 51 | + { |
| 52 | + "value": "Yes~/live/scr", |
| 53 | + "text": "Yes", |
| 54 | + checked: checked("organ-faith", "Yes") |
| 55 | + }, |
| 56 | + { |
| 57 | + "value": "No~/live/scr", |
| 58 | + "text": "No", |
| 59 | + checked: checked("organ-faith", "No") |
| 60 | + } |
| 61 | + ] |
| 62 | + }) }} |
| 63 | + |
| 64 | + {% endcall %} |
| 65 | + |
| 66 | + {{ button({ |
| 67 | + "text": "Continue" |
| 68 | + }) }} |
| 69 | + |
| 70 | + </form> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + |
| 74 | +{% include 'live/includes/devmode.html' %} |
| 75 | + |
| 76 | +{% endblock %} |
| 77 | + |
| 78 | +{% block footer %} |
| 79 | + {% include 'live/includes/footer.html' %} |
| 80 | +{% endblock %} |
0 commit comments