diff --git a/src/server/bank-details/confirm-bank-details.njk b/src/server/bank-details/confirm-bank-details.njk new file mode 100644 index 0000000..c5c63ba --- /dev/null +++ b/src/server/bank-details/confirm-bank-details.njk @@ -0,0 +1,127 @@ +{% extends 'layouts/page.njk' %} +{% from "govuk/components/breadcrumbs/macro.njk" import govukBreadcrumbs %} +{% from "govuk/components/checkboxes/macro.njk" import govukCheckboxes %} +{% from "govuk/components/details/macro.njk" import govukDetails %} +{% block beforeContent %} + +
+
+
+ {{ govukBreadcrumbs({ + items: [ + { + text: "LAPs home", + href: "/laps/home-page" + }, + { + text: "Confirm bank details" + } + ] + }) }} +
+
+ {{ + dwpLanguageToggle({ + selectedLang: "en", + href: { + en: "/patterns/toggle-to-welsh/examples/en", + cy: "/patterns/toggle-to-welsh/examples/cy" + } + }) + }} +
+
+
+ +{% endblock %} + +{% block content %} + +
+
+ + {% if data['error'] == 'true' %} + {{ govukErrorSummary({ + titleText: "There is a problem", + errorList: [ + { + text: "Confirm these details are correct", + href: "#confirm-bank-details" + } + ] + }) }} + {% endif %} + +
+
+
+ + + Glamshire County Council +

+ Confirm your local authority's bank details +

+
+ + {{ govukSummaryList({ + rows: [ + { + key: { + text: "Name of account" + }, + value: { + text: "Glamshire County Council" + } + }, + { + key: { + text: "Sort code" + }, + value: { + text: "12 34 56" + } + }, + { + key: { + text: "Account number" + }, + value: { + text: "78910112" + } + } + ] + }) }} + +
+
+ + +
+
+ +
+ + {{ govukDetails({ + summaryText: "These details are incorrect", + html: "

To update your local authority's bank details, contact customer services.

+

We'll let you know once the update is complete, and you'll be able to confirm the changes in your account.

+

Email
+ EPRCustomerService@defra.gov.uk
+ We aim to respond within 20 working days +

+

Telephone
+ 0300 060 0002
+ Monday to Friday 8am to 6pm (closed on weekends and bank holidays)

" + }) }} + + +
+
+
+
+ +{% endblock %}