mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
In pages specific to a service (e.g. dashboard and sub pages) the title needs to distinguish which service it applies to. This is mainly to give context to screen reader users who could be managing multiple services. Implementing this uses template inheritance: `page_title` includes `per_page_title` includes `service_page_title` ‘GOV.UK Notify’ is inserted into every page title. Pages that set `service_page_title` get the service name inserted too.
94 lines
2.4 KiB
HTML
94 lines
2.4 KiB
HTML
{% extends "withoutnav_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
Cookies
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1 class="heading-large">Cookies</h1>
|
||
<p class="summary">
|
||
GOV.UK Notify puts small files (known as ‘cookies’)
|
||
on to your computer.
|
||
</p>
|
||
<p>These cookies are used to remember you once you’ve logged in</p>
|
||
<p>
|
||
Find out <a href="http://www.aboutcookies.org/">how to manage cookies</a>.
|
||
</p>
|
||
|
||
<h2 class="heading-medium">Session cookies</h2>
|
||
<p>
|
||
We store session cookies on your computer to help keep your information
|
||
secure while you use the service.
|
||
</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Name</th>
|
||
<th>Purpose</th>
|
||
<th>Expires</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>
|
||
notify_admin_session
|
||
</td>
|
||
<td width="50%">
|
||
Used to keep you logged in
|
||
</td>
|
||
<td>
|
||
1 hour
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
notify_admin_remember_me
|
||
</td>
|
||
<td width="50%">
|
||
Used to let you sign in again on the same day, without requiring 2-factor authentication
|
||
</td>
|
||
<td>
|
||
24 hours
|
||
</td>
|
||
</tr>
|
||
|
||
</tbody>
|
||
</table>
|
||
|
||
<h2 class="heading-medium">Introductory message cookie</h2>
|
||
<p>
|
||
When you first use the service, you may see a pop-up ‘welcome’ message.
|
||
Once you’ve seen the message, we store a cookie on your computer so it
|
||
knows not to show it again.
|
||
</p>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Name</th>
|
||
<th>Purpose</th>
|
||
<th>Expires</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>
|
||
seen_cookie_message
|
||
</td>
|
||
<td width="50%">
|
||
Saves a message to let us know that you have seen our cookie
|
||
message
|
||
</td>
|
||
<td>
|
||
1 month
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|