Add basic page for accessibility statement

This commit is contained in:
Tom Byers
2020-09-18 14:40:47 +01:00
parent 422825f03b
commit 5241ea3ef0
3 changed files with 38 additions and 0 deletions

View File

@@ -53,6 +53,11 @@ def privacy():
return render_template('views/privacy.html')
@main.route('/accessibility-statement')
def accessibility_statement():
return render_template('views/accessibility_statement.html')
@main.route('/pricing')
def pricing():
return render_template(

View File

@@ -140,6 +140,10 @@
{
"href": url_for("main.cookies"),
"text": "Cookies"
},
{
"href": url_for("main.accessibility_statement"),
"text": "Accessibility statement"
}
] %}

View File

@@ -0,0 +1,29 @@
{% extends "content_template.html" %}
{% from "components/service-link.html" import service_link %}
{% block per_page_title %}
Accessibility statement
{% endblock %}
{% block content_column_content %}
<h1 class="heading-large">Accessibility statement</h1>
<p class="govuk-body">
This accessibility statement applies to content published on the www.notifications.service.gov.uk domain. It does not apply to the GOV.UK Notify API documentation subdomain: https://docs.notifications.service.gov.uk.
</p>
<h2 class="heading-medium">How accessible this website is</h2>
<h2 class="heading-medium">Feedback and contact information</h2>
<h2 class="heading-medium">Reporting accessibility problems with this website</h2>
<h2 class="heading-medium">Enforcement procedure</h2>
<h2 class="heading-medium">Technical information about this websites accessibility</h2>
<h3 class="heading-small">Compliance status</h3>
{% endblock %}