diff --git a/app/templates/views/two-factor-webauthn.html b/app/templates/views/two-factor-webauthn.html index a2758e76e..054b38cd5 100644 --- a/app/templates/views/two-factor-webauthn.html +++ b/app/templates/views/two-factor-webauthn.html @@ -1,27 +1,26 @@ {% extends "withoutnav_template.html" %} {% from "components/page-header.html" import page_header %} {% from "components/button/macro.njk" import govukButton %} +{% from "components/back-link/macro.njk" import govukBackLink %} -{% set page_title = 'Security keys' %} +{% set page_title = 'Get your security key' %} {% block per_page_title %} {{ page_title }} {% endblock %} {% block maincolumn_content %} - {{ page_header( - page_title, - back_link=url_for('.user_profile') - ) }} + {{ govukBackLink({ "href": url_for('.user_profile') }) }}
Security key
-When you are ready to authenticate, press the button below.
- ++ You need to have your security key to sign in. +
{{ govukButton({ "element": "button", - "text": "Webauthn authenticate click me click me", + "text": "Check security key", "classes": "govuk-button--secondary", "attributes": { "data-module": "authenticate-security-key", @@ -29,5 +28,8 @@ } }) }}