mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-03 16:09:06 -04:00
Add basic page for accessibility statement
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -140,6 +140,10 @@
|
||||
{
|
||||
"href": url_for("main.cookies"),
|
||||
"text": "Cookies"
|
||||
},
|
||||
{
|
||||
"href": url_for("main.accessibility_statement"),
|
||||
"text": "Accessibility statement"
|
||||
}
|
||||
] %}
|
||||
|
||||
|
||||
29
app/templates/views/accessibility_statement.html
Normal file
29
app/templates/views/accessibility_statement.html
Normal 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 website’s accessibility</h2>
|
||||
|
||||
<h3 class="heading-small">Compliance status</h3>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user