Skip to content

Commit 5349c55

Browse files
johnrimmer2Anna-Suttonfrankieroberto
authored
Adds terms of use pages (#259)
Adds an 'Agree to terms of use' page and a page for the full Terms of use https://nhsd-jira.digital.nhs.uk/browse/RAVS-1711 --------- Co-authored-by: Anna-Sutton <[email protected]> Co-authored-by: Frankie Roberto <[email protected]>
1 parent 2d0bee3 commit 5349c55

File tree

4 files changed

+200
-36
lines changed

4 files changed

+200
-36
lines changed

app/views/find-a-record/delete.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<h1 class="nhsuk-heading-l">Are you sure you want to delete {{ vaccination.patient.name }}’s {{vaccination.vaccine}} record?</h1>
2222

2323

24-
<p>Once deleted you will no longer be able to view or edit the record.</p>
24+
<p>Once deleted, a record cannot be restored. But deleted records will show in reports.</p>
2525

2626
<form action="/find-a-record/records/{{ vaccination.id }}/confirm-delete" method="post">
2727
{{ button({

app/views/layout.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{
3131
URL: "/accessibility-statement",
3232
label: "Accessibility statement"
33-
},
33+
},
3434
{
3535
URL: "/contact-us",
3636
label: "Contact us"
@@ -44,13 +44,13 @@
4444
label: "User guide (opens in new tab)"
4545
},
4646
{
47-
URL: "/terms-of-use",
47+
URL: "/terms-of-use1",
4848
label: "Terms of use"
4949
},
5050
{
5151
URL: "/updates",
5252
label: "What's new"
53-
},
53+
},
5454
{
5555
URL: "/prototype-admin/reset-data",
5656
label: "Reset prototype test data"

app/views/terms-of-use.html

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
{% extends 'layout.html' %}
22

3-
43
{% block pageTitle %}
5-
Terms of use
4+
Agree to the terms of use
65
{% endblock %}
76

87
{% block header %}
9-
{% include "includes/header-logged-in-organisation.html" %}
8+
{% include "includes/header-logged-out.html" %}
109
{% endblock %}
1110

1211

1312
{% block content %}
1413
<div class="nhsuk-grid-row">
1514
<div class="nhsuk-grid-column-two-thirds">
1615

17-
<h1 class="nhsuk-heading-xl">Terms of use</h1>
16+
<h1 class="nhsuk-heading-l">Agree to the terms of use</h1>
17+
18+
<ul class="nhsuk-list nhsuk-list--bullet">
19+
<li>Only use the service to record NHS vaccinations.</li>
20+
<li>Always use your own details to log in.</li>
21+
<li>Never allow anyone else to use your details to log in.</li>
22+
</ul>
1823

19-
<h2 class="nhsuk-heading-m">You must ensure</h2>
24+
<p><a href="/terms-of-use1" target="_blank">Read the full terms of use (opens in new tab)</a> </p>
2025

21-
<ul class="nhsuk-body-m">
22-
<li>Access to the service and the recording of vaccination events is kept up to date</li>
23-
<li>Individuals have the appropriate access based on their contract and training</li>
24-
<li>Access is immediately removed for individuals who have left your organisation</li>
25-
</ul>
26+
<p>By continuing, you agree to the full terms of use.</p>
2627

27-
<a href="#" class="nhsuk-link">Read the full RAVS license agreement here</a>
28+
{{ button({
29+
text: "Accept and continue",
30+
href: "/home",
31+
classes: "nhsuk-u-margin-top-5"
32+
}) }}
2833

2934
</div>
3035
</div>
31-
32-
3336
{% endblock %}
34-

0 commit comments

Comments
 (0)