diff --git a/packages/govuk-frontend-review/src/views/full-page-examples/confirmation-page/index.njk b/packages/govuk-frontend-review/src/views/full-page-examples/confirmation-page/index.njk new file mode 100644 index 0000000000..2827616f35 --- /dev/null +++ b/packages/govuk-frontend-review/src/views/full-page-examples/confirmation-page/index.njk @@ -0,0 +1,88 @@ +--- +title: Application complete +name: Confirmation page +scenario: You have reached the end of a service + +notes: | + We'll write these later +--- + +{% extends "layouts/full-page-example.njk" %} + +{# {% set mainClasses = "govuk-main-wrapper--l" %} #} +{# remember to set the title properly #} +{% from "govuk/components/panel/macro.njk" import govukPanel %} +{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} + +{% set pageTitle = example.title %} +{% block pageTitle %}{{ pageTitle }} - GOV.UK{% endblock %} + +{% block headerEnd %} + {{ govukPhaseBanner({ + tag: { + text: "Alpha" + }, + html: 'This is a new service. We’re still working on ways to improve it.' + }) }} +{% endblock %} + +{% block content %} +
+
+ {{ govukPanel({ + titleText: pageTitle, + html: "Your reference number
HDJ2123F" + }) }} + +

We have sent you a confirmation email.

+ +

What happens next

+ +

+ We’ve sent your application to Hackney Electoral Register Office. +

+

+ They will contact you either to confirm your registration, or to ask for more information. +

+
+
+{% endblock %} + +{% block footerStart %} +
+
+
+

Help us improve this service

+

Tell us about your experience using this service. Give us your feedback

+
+
+
+ + +{% endblock %} + diff --git a/packages/govuk-frontend-review/src/views/layouts/_generic.njk b/packages/govuk-frontend-review/src/views/layouts/_generic.njk index fbc731f14e..ecb848b682 100644 --- a/packages/govuk-frontend-review/src/views/layouts/_generic.njk +++ b/packages/govuk-frontend-review/src/views/layouts/_generic.njk @@ -14,7 +14,7 @@ {% endblock %} {% endblock %} -{% set mainClasses = 'govuk-main-wrapper--auto-spacing' %} +{# {% set mainClasses = 'govuk-main-wrapper--auto-spacing' %} #} {% block bodyEnd %}