|
| 1 | +{% set serviceHome = '/live/start' %} |
| 2 | +{% set servicePhase = 'beta' %} |
| 3 | +{% set feedbackType = 'step' %} |
| 4 | + |
| 5 | +{% extends 'layout.html' %} |
| 6 | + |
| 7 | +{% set heading = 'Use your NHS account to apply' %} |
| 8 | + |
| 9 | +{% block pageTitle %} |
| 10 | +{{ heading }} - {{ data.presets[0].servicename }} - NHS |
| 11 | +{% endblock %} |
| 12 | + |
| 13 | +{% block outerContent %} |
| 14 | + {{ backLink({ |
| 15 | + "href": "who-is-registering", |
| 16 | + "text": "Go back", |
| 17 | + "classes": "nhsuk-u-margin-top-4 nhsuk-u-margin-bottom-0" |
| 18 | + }) }} |
| 19 | +{% endblock %} |
| 20 | + |
| 21 | +{% block content %} |
| 22 | + |
| 23 | + <div class="nhsuk-grid-row"> |
| 24 | + <div class="nhsuk-grid-column-two-thirds"> |
| 25 | + |
| 26 | + <h1 class="nhsuk-heading-l">{{ heading }}</h1> |
| 27 | + |
| 28 | + <p>Using your NHS account means you:</p> |
| 29 | + <ul> |
| 30 | + <li>may save time completing this application</li> |
| 31 | + <li>can link your profile to the child you are applying on behalf of</li> |
| 32 | + </ul> |
| 33 | + <p>Use your own account, not the details of a child's account if they have one.</p> |
| 34 | + |
| 35 | + <h2 class="nhsuk-heading-m">Would you like to use your NHS account?</h2> |
| 36 | + |
| 37 | + <div class="nhs-login"> |
| 38 | + <p>You’ll have an account if you signed up for the <span class="nhsuk-u-font-weight-bold">NHS App</span> or other online health services that use NHS login.</p> |
| 39 | + <a href="nhs-login-email?use-login=true&login-level=p9" class="nhsuk-button nhsuk-button--blue nhsuk-u-margin-bottom-4" type="submit"> |
| 40 | + Use NHS account</a> |
| 41 | + </div> |
| 42 | + <p><a href="what-is-your-name?use-login=false" class="nhsuk-button nhsuk-button--secondary">Do not use account</a></p> |
| 43 | + |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + |
| 47 | +{# DEVMODE SCENARIOS #} |
| 48 | +{% if data['devMode'] === 'true' %} |
| 49 | +<details class="nhsuk-details dev-mode" role="group"> |
| 50 | + <summary class="nhsuk-details__summary" role="button" aria-controls="details-content-0" aria-expanded="true"> |
| 51 | + <span class="nhsuk-details__summary-text"> |
| 52 | + Switch scenario |
| 53 | + </span> |
| 54 | + </summary> |
| 55 | + <div class="nhsuk-details__text"> |
| 56 | + <h4>Login user</h4> |
| 57 | + <ul class="govuk-list govuk-list--bullet"> |
| 58 | + <li> |
| 59 | + <a href="nhs-login-email?use-login=true&login-level=p5">P5 level of identity</a> |
| 60 | + </li> |
| 61 | + <li> |
| 62 | + <a href="nhs-login-email?use-login=true&login-level=p9">P9 level of identity</a> |
| 63 | + </li> |
| 64 | + </ul> |
| 65 | + </div> |
| 66 | +</details> |
| 67 | +{% endif %} |
| 68 | + |
| 69 | +<style> |
| 70 | + .nhs-login { |
| 71 | + background-color: #ffffff; |
| 72 | + border: 1px solid #d8dde0; |
| 73 | + padding: 24px 24px 12px 24px; |
| 74 | + margin-bottom: 24px; |
| 75 | + margin-top: 24px; |
| 76 | + } |
| 77 | +</style> |
| 78 | + |
| 79 | +{% endblock %} |
| 80 | + |
| 81 | +{% block footer %} |
| 82 | + {% include 'live/includes/footer.html' %} |
| 83 | +{% endblock %} |
0 commit comments