digitalmarketplace-govuk-frontend
Version:
Digital Marketplace GOV.UK Frontend contains the code you need to start building a user interface for Digital Marketplace.
16 lines (12 loc) • 392 B
HTML
{% extends "_base_page.html" %}
{% block pageTitle %}Bad request - Digital Marketplace{% endblock %}
{% block mainContent %}
<h1 class="govuk-heading-xl">Sorry, there was a problem with your request</h1>
<p class="govuk-body">
{% if error_message %}
{{ error_message }}
{% else %}
Please do not attempt the same request again.
{% endif %}
</p>
{% endblock %}