1+ <!-- Use this page as the index for your project -->
2+
3+ <!-- ADDING CUSTOM CSS - Add your custom CSS or Sass in /app/assets/sass/main.scss -->
4+
5+ <!-- Extends the layout from /views/layout.html -->
6+ {% extends 'layout-gp.html' %}
7+ <!-- In /views/layout.html you can: - change the header and footer - add custom CSS and JavaScript -->
8+
9+ <!-- Set the page title -->
10+ {% block pageTitle %}
11+ Patient data transfer - GP registration service - NHS
12+ {% endblock %}
13+
14+ <!-- For adding a breadcrumb -->
15+ <!-- Code examples can be found at https://service-manual.nhs.uk/design-system/components/breadcrumbs -->
16+ {% block beforeContent %}{% endblock %}
17+
18+ <!-- For adding a Go back link -->
19+ <!-- Code examples can be found at https://service-manual.nhs.uk/design-system/components/Go back-link -->
20+ {% block outerContent %}{% endblock %}
21+
22+ <!-- For adding page content -->
23+ <!-- Page layout code can be found at https://service-manual.nhs.uk/design-system/styles/layout -->
24+ {% block content %}
25+
26+ < div class ="nhsuk-grid-row ">
27+ < div class ="nhsuk-grid-column-two-thirds ">
28+
29+ {{ backLink({
30+ text: "Go back",
31+ href: "javascript:history.go(-1)"
32+ }) }}
33+
34+ < form action ="gp-additional-questions-notify-patient " method ="post " autocomplete ="off ">
35+
36+ < H2 > Registration data transfer</ H2 >
37+ < p > Registration data can be transferred directly to your clinical system. This will reduce the amount of time it takes you to register a patient.</ p >
38+ < p > Data will only be transferred for patients that:</ p >
39+ < ul >
40+ < li > have been identified and matched to their NHS record</ li >
41+ < li > are within your catchment area</ li >
42+ < li > are aged 18 or over</ li >
43+ < li > are transferring from another GP surgery in England</ li >
44+ < li > do not have a sensitive marker on their record</ li >
45+ </ ul >
46+
47+ < h2 style ="font-size: 1.5rem; padding-top: 0; "> Do you want registration data transfer?</ h2 >
48+
49+ {{ radios({
50+ "idPrefix": "data-transfer",
51+ "name": "data-transfer",
52+ "items": [
53+ {
54+ "value": "Yes",
55+ "text": "Yes",
56+ checked: checked("data-transfer", "Yes")
57+ },
58+ {
59+ "value": "No",
60+ "text": "No",
61+ checked: checked("data-transfer", "No")
62+ }
63+ ]
64+ }) }}
65+
66+
67+ {{ button({
68+ "text": "Continue"
69+ }) }}
70+
71+ </ form >
72+ </ div >
73+ </ div >
74+
75+
76+ <!-- End of content -->
77+
78+ </ div>
79+ </ div>
80+ {% block pageScripts %}
81+
82+ {% endblock %}
83+ {% endblock %}
0 commit comments