Instruction
Make a declaration Nunjucks
See full guidance for Make a declaration.
{% from "govuk/components/button/macro.njk" import govukButton %}
<div class="govuk-width-container">
<h1 class="govuk-heading-l">Declaration</h1>
<p class="govuk-body">
By sending the application you agree that the information you have given is complete and correct.
If you deliberately give the wrong or incomplete information, or you do not report any changes, you may:
</p>
<ul class="govuk-list govuk-list--bullet">
<li>be prosecuted</li>
<li>need to pay a financial penalty</li>
<li>need to pay back any money you are overpaid if you are asked to</li>
</ul>
{{
govukButton({
text: "I agree – send my application"
})
}}
</div>