mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
By deep linking to the support form we skip the question that asks if someone is a member of the public. This seems like a helpful thing when we’re directing people to where they can ask for document download to be switched on. But what I think is happening (backed up from one example I can see in Kibana): 1. Someone searches for something like ‘email GOV.UK’ 2. They land on https://www.notifications.service.gov.uk/features/email 3. They scan the page and think, hmm not sure what this is, I’m not seeing what I’m looking for here… 4. …but aha, there’s a link that says ‘contact us’ 5. They click it and land on https://www.notifications.service.gov.uk/support/ask-question-give-feedback which has a nice big box to type in This commit removes these deep links from non-logged-in pages, so that everyone has to go through the ‘are you a member of the public’ question before they get to the big typey box.
46 lines
2.6 KiB
HTML
46 lines
2.6 KiB
HTML
{% extends "content_template.html" %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
|
||
{% block per_page_title %}
|
||
Terms of use
|
||
{% endblock %}
|
||
|
||
{% block content_column_content %}
|
||
|
||
<h1 class="heading-large">Terms of use</h1>
|
||
|
||
<p>
|
||
These terms apply to your service’s use of GOV.UK Notify. You must be the service manager to accept them.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">When using Notify</h2>
|
||
<p>You must:</p>
|
||
<ul class="list list-bullet">
|
||
<li>complete your organisation’s information assurance process (you do not need to include Notify or our delivery partners, we’ve already done that)</li>
|
||
<li>tell us immediately if you have any security breaches</li>
|
||
<li>keep your API keys secure</li>
|
||
<li>get the right levels of consent (to send messages and to use data)</li>
|
||
<li>not send unsolicited messages, only ones related to a transaction or something the user has subscribed to be updated about (<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">check the Service Manual</a> if you’re not sure)</li>
|
||
<li>
|
||
send messages that meet the GOV.UK Service Manual standards for <a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">writing text messages and emails</a></li>
|
||
<li>not send messages containing any personally or commercially sensitive information</li>
|
||
<li>check that the data you add to Notify is accurate and complies with data protection legislation</li>
|
||
</ul>
|
||
<p>If you do not keep to these terms, we might have to stop sending your messages.</p>
|
||
|
||
<p>Notify will:</p>
|
||
<ul class="list list-bullet">
|
||
<li>send all the messages you pass to us, as long as they meet our guidelines</li>
|
||
<li>
|
||
show how Notify is performing (through our <a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/performance/govuk-notify">performance</a> and <a class="govuk-link govuk-link--no-visited-state" href="https://status.notifications.service.gov.uk/">status</a> pages)
|
||
</li>
|
||
<li>keep your data <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.security') }}">secure</a></li>
|
||
<li>give you one month’s notice by email if we change our terms of use or delivery providers</li>
|
||
</ul>
|
||
|
||
<h2 class="heading-medium">Leaving Notify</h2>
|
||
<p>You can leave Notify at any time. Just <a class="govuk-link govuk-link--no-visited-state" href="{{url_for('.support')}}">contact us</a> and we’ll close your account.</p>
|
||
<p>When you leave Notify, all your data will be deleted.</p>
|
||
|
||
{% endblock %}
|