|
| 1 | +{% extends 'reg-portal/layout.html' %} |
| 2 | + |
| 3 | +{% block pageTitle %} |
| 4 | +Select your login method - CIS2 - Care Identity Authentication |
| 5 | +{% endblock %} |
| 6 | + |
| 7 | +{% block content %} |
| 8 | + |
| 9 | + <div class="nhsuk-grid-row"> |
| 10 | + <div class="nhsuk-grid-column-two-thirds"> |
| 11 | + |
| 12 | + {{ backLink({ |
| 13 | + text: "Go back", |
| 14 | + href: "login" |
| 15 | + }) }} |
| 16 | + |
| 17 | + <form action="reject-confirm" method="post" autocomplete="off"> |
| 18 | + |
| 19 | + {% call fieldset({ |
| 20 | + legend: { |
| 21 | + text: "Select your login method", |
| 22 | + classes: "nhsuk-fieldset__legend--l", |
| 23 | + isPageHeading: true |
| 24 | + } |
| 25 | + }) %} |
| 26 | + |
| 27 | + {{ hint({ |
| 28 | + text: "Your choice will be saved as your preferred login method for this browser." |
| 29 | + }) }} |
| 30 | + |
| 31 | + {{ hint({ |
| 32 | + text: "You may have to repeat this step if you clear your browser's cookies.", |
| 33 | + "classes": "nhsuk-u-margin-bottom-4" |
| 34 | + }) }} |
| 35 | + |
| 36 | + {{ radios({ |
| 37 | + "idPrefix": "login-option", |
| 38 | + "name": "login-option", |
| 39 | + "items": [ |
| 40 | + { |
| 41 | + "value": "Smartcard", |
| 42 | + "text": "Smartcard", |
| 43 | + checked: checked("login-option", "Smartcard") |
| 44 | + }, |
| 45 | + |
| 46 | + { |
| 47 | + "value": "Windows Hello for Business", |
| 48 | + "text": "Windows Hello for Business", |
| 49 | + checked: checked("login-option", "Windows Hello for Business") |
| 50 | + }, |
| 51 | + { |
| 52 | + "value": "Security key", |
| 53 | + "text": "Security key", |
| 54 | + checked: checked("login-option", "Security key") |
| 55 | + }, |
| 56 | + { |
| 57 | + "value": "iPad app", |
| 58 | + "text": "iPad app", |
| 59 | + checked: checked("login-option", "iPad app") |
| 60 | + } |
| 61 | + ] |
| 62 | + }) }} |
| 63 | + |
| 64 | + {% endcall %} |
| 65 | + |
| 66 | + {{ button({ |
| 67 | + "text": "Continue" |
| 68 | + }) }} |
| 69 | + |
| 70 | + </form> |
| 71 | + |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | +{% endblock %} |
| 81 | + |
| 82 | +{% block pageScripts %} |
| 83 | + |
| 84 | + |
| 85 | +{% endblock %} |
0 commit comments