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+ < div class ="nhsuk-inset-text ">
47+ < span class ="nhsuk-u-visually-hidden "> Information: </ span >
48+
49+ < p > If your practice uses the EMIS patient registration system if you select 'Yes' you will be notified once the service goes live for your practice.</ a > .</ p >
50+ </ div >
51+ < h2 style ="font-size: 1.5rem; padding-top: 0; "> Do you want registration data transfer?</ h2 >
52+
53+ {{ radios({
54+ "idPrefix": "data-transfer",
55+ "name": "data-transfer",
56+ "items": [
57+ {
58+ "value": "Yes",
59+ "text": "Yes",
60+ checked: checked("data-transfer", "Yes")
61+ },
62+ {
63+ "value": "No",
64+ "text": "No",
65+ checked: checked("data-transfer", "No")
66+ }
67+ ]
68+ }) }}
69+
70+
71+ {{ button({
72+ "text": "Continue"
73+ }) }}
74+
75+ </ form >
76+ </ div >
77+ </ div >
78+
79+
80+ <!-- End of content -->
81+
82+ </ div>
83+ </ div>
84+ {% block pageScripts %}
85+
86+ {% endblock %}
87+ {% endblock %}
0 commit comments