Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SIR-867: Update - 404 page not found #196

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions server/views/404.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{% extends 'layout.html' %}
{% set pageTitle = 'Page not found' %}

{% block content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<h1 id="pageTitle" class="govuk-heading-l">{{ pageTitle }}</h1>

<p id="para1" class="govuk-body">If you typed the web address, check it is correct.</p>
<p id="para2" class="govuk-body">If you pasted the web address, check you copied the entire address.</p>
<h1 class="govuk-heading-l">Page not found</h1>
<p class="govuk-body">If you typed the web address, check it is correct.</p>
<p class="govuk-body">If you copy and pasted the address, check you copied the full address.</p>
<p class="govuk-body">
If the web address is correct or you selected a link or button, find other ways to <a href="https://www.gov.uk/report-an-environmental-incident">report an environmental incident</a>.
</p>
</div>
</div>
{% endblock %}
Loading