{% extends baseLayoutPath %} {% from "govuk/components/error-summary/macro.njk" import govukErrorSummary %} {% from "govuk/components/notification-banner/macro.njk" import govukNotificationBanner %} {% from "partials/components.html" import componentList with context %} {% block content %}
{% if previewMode %} {% include "partials/preview-banner.html" %} {% endif %} {% if showPaymentExpiredNotification %} {{ govukNotificationBanner({ titleText: "Important", html: '

Your payment has been cancelled

Your payment details were deleted because the form was inactive for 5 days.

Add your payment details again.

' }) }} {% endif %} {% if errors | length and not showPaymentExpiredNotification %} {{ govukErrorSummary({ titleText: "There is a problem", errorList: checkErrorTemplates(errors) }) }} {% endif %} {% if hasMissingNotificationEmail %} {% include "partials/warn-missing-notification-email.html" %} {% endif %} {% include "partials/heading.html" %} {% block form %} {% if page.allowContinue %} {% include "partials/form.html" %} {% else %} {{ componentList(components) }} {% endif %} {% endblock %}
{% if config.cdpEnvironment == 'local' and context | length and not context.isForceAccess %} {% include "partials/debug.html" %} {% endif %} {% endblock %}