{% extends baseLayoutPath %} {% from "govuk/components/panel/macro.njk" import govukPanel %} {% from "govuk/components/button/macro.njk" import govukButton %} {% set mainClasses = "govuk-main-wrapper--l" %} {% block content %}
{{ govukPanel({ titleText: pageTitle or "Your progress has been saved" }) }}

What happens next

Your form progress has been saved. You can return to complete your application at any time using the link provided.

{% if returnUrl %}

{{ govukButton({ text: "Return to application", href: returnUrl, classes: "govuk-button--secondary" }) }}

{% endif %}
{% endblock %}