Skip to content

Commit 1a2654d

Browse files
MPR research
1 parent 108bfa5 commit 1a2654d

File tree

4 files changed

+623
-0
lines changed

4 files changed

+623
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{% extends 'reg-portal/layout.html' %}
2+
3+
{% block pageTitle %}
4+
GP portal - NHS
5+
{% endblock %}
6+
7+
{% block content %}
8+
9+
<div class="nhsuk-grid-row">
10+
<div class="nhsuk-grid-column-full">
11+
12+
<!--{{ backLink({
13+
text: "Return to Manage your profile",
14+
href: "/gp/gp-profile-manager-manage"
15+
}) }}-->
16+
17+
<span class="nhsuk-caption-m">In the last 90 days</span>
18+
<h1 class="nhsuk-heading-xl"> Patient registrations</h1>
19+
<p>Review new registration requests from patients who have had their identities confirmed and are matched to their health record.</p>
20+
21+
<ul class="nhsuk-grid-row nhsuk-card-group">
22+
<li class="nhsuk-grid-column-one-third nhsuk-card-group__item">
23+
24+
<div class="nhsuk-card nhsuk-card--clickable">
25+
<div class="nhsuk-card__content">
26+
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">12 <span class="nhsuk-u-visually-hidden">New</span></p>
27+
<p><a href="reg-table-v2-yes-no" class="nhsuk-card__link nhsuk-u-font-weight-normal nhsuk-u-font-size-19 nhsuk-link--no-visited-state">New</a></p>
28+
</div>
29+
</div>
30+
31+
</li>
32+
<li class="nhsuk-grid-column-one-third nhsuk-card-group__item">
33+
34+
<div class="nhsuk-card nhsuk-card--clickable">
35+
<div class="nhsuk-card__content">
36+
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">128 <span class="nhsuk-u-visually-hidden">Accepted</span></p>
37+
<p>Accepted</p>
38+
</div>
39+
</div>
40+
41+
</li>
42+
<li class="nhsuk-grid-column-one-third nhsuk-card-group__item">
43+
44+
<div class="nhsuk-card nhsuk-card--clickable">
45+
<div class="nhsuk-card__content">
46+
<p class="nhsuk-heading-xl nhsuk-u-font-size-64 nhsuk-u-margin-bottom-1">1 <span class="nhsuk-u-visually-hidden">Rejected</span></p>
47+
<p>Rejected</p>
48+
</div>
49+
</div>
50+
51+
</li>
52+
</ul>
53+
54+
<h2 class="nhsuk-heading-l nhsuk-u-padding-top-6">Support</h2>
55+
<p>You can contact us by raising a Service Now ticket in NHS Profile Manager.</p>
56+
57+
</div>
58+
</div>
59+
60+
61+
62+
{% endblock %}
63+
64+
{% block pageScripts %}
65+
66+
67+
{% endblock %}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{% extends 'reg-portal/login-layout.html' %}
2+
3+
{% block pageTitle %}
4+
Choose your preferred authentication method - CIS2 - Care Identity Authentication
5+
{% endblock %}
6+
7+
{% block content %}
8+
9+
<div class="nhsuk-grid-row">
10+
<div class="nhsuk-grid-column-two-thirds">
11+
12+
{{ backLink({
13+
text: "Go back",
14+
href: "login"
15+
}) }}
16+
17+
<form action="dashboard" method="post" autocomplete="off">
18+
19+
{% call fieldset({
20+
legend: {
21+
text: "Choose your preferred authentication method",
22+
classes: "nhsuk-fieldset__legend--l",
23+
isPageHeading: true
24+
}
25+
}) %}
26+
27+
{{ radios({
28+
"idPrefix": "login-option",
29+
"name": "login-option",
30+
"items": [
31+
{
32+
"value": "iPad",
33+
"text": "iPad",
34+
checked: checked("login-option", "iPad")
35+
},
36+
{
37+
"value": "Microsoft Authenticator",
38+
"text": "Microsoft Authenticator",
39+
checked: checked("login-option", "Microsoft Authenticator")
40+
},
41+
{
42+
"value": "NHS.net Connect (formerly NHSmail)",
43+
"text": "NHS.net Connect (formerly NHSmail)",
44+
checked: checked("login-option", "NHS.net Connect (formerly NHSmail)")
45+
},
46+
{
47+
"value": "Passkey",
48+
"text": "Passkey",
49+
checked: checked("login-option", "Passkey")
50+
},
51+
{
52+
"value": "Security key",
53+
"text": "Security key",
54+
checked: checked("login-option", "Security key")
55+
},
56+
{
57+
"value": "Smartcard",
58+
"text": "Smartcard",
59+
checked: checked("login-option", "Smartcard")
60+
},
61+
{
62+
"value": "Windows Hello for Business",
63+
"text": "Windows Hello for Business",
64+
checked: checked("login-option", "Windows Hello for Business")
65+
}
66+
]
67+
}) }}
68+
69+
{% endcall %}
70+
71+
{{ button({
72+
"text": "Continue"
73+
}) }}
74+
75+
</form>
76+
77+
</div>
78+
</div>
79+
80+
</div>
81+
</div>
82+
83+
84+
85+
{% endblock %}
86+
87+
{% block pageScripts %}
88+
89+
90+
{% endblock %}
Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
{% extends 'reg-portal/layout.html' %}
2+
3+
{% block pageTitle %}
4+
6 new registrations - GP registrations portal - NHS
5+
{% endblock %}
6+
7+
{% block content %}
8+
9+
<div class="nhsuk-grid-row">
10+
<div class="nhsuk-grid-column-full">
11+
12+
{{ backLink({
13+
text: "Return to dashboard",
14+
href: "dashboard"
15+
}) }}
16+
17+
18+
<h1 class="nhsuk-heading-xl">View patient details</h1>
19+
<p>View details of patient registration requests from the last 90 days.</p>
20+
21+
22+
<table role="table" class="nhsuk-table-responsive">
23+
<thead class="nhsuk-table__head">
24+
<tr role="row">
25+
26+
<th role="columnheader" scope="col" class="govuk-table__header" aria-sort="none">
27+
<a href="reg-table-v2-yes-no-sorted">
28+
<button type="button" data-index="0">Name<svg width="22" height="22" focusable="false" aria-hidden="true" role="img" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
29+
<path d="M8.1875 9.5L10.9609 3.95703L13.7344 9.5H8.1875Z" fill="currentColor"></path>
30+
<path d="M13.7344 12.0781L10.9609 17.6211L8.1875 12.0781H13.7344Z" fill="currentColor"></path>
31+
</svg>
32+
</button>
33+
</a>
34+
</th>
35+
36+
<th role="columnheader" scope="col" class="govuk-table__header" aria-sort="none">
37+
<button type="button" data-index="1">Matched<svg width="22" height="22" focusable="false" aria-hidden="true" role="img" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
38+
<path d="M8.1875 9.5L10.9609 3.95703L13.7344 9.5H8.1875Z" fill="currentColor"></path>
39+
<path d="M13.7344 12.0781L10.9609 17.6211L8.1875 12.0781H13.7344Z" fill="currentColor"></path>
40+
</svg>
41+
</button>
42+
</th>
43+
44+
<th role="columnheader" scope="col" class="govuk-table__header govuk-table__header--numeric" aria-sort="none">
45+
<button type="button" data-index="3">Catchment<svg width="22" height="22" focusable="false" aria-hidden="true" role="img" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
46+
<path d="M8.1875 9.5L10.9609 3.95703L13.7344 9.5H8.1875Z" fill="currentColor"></path>
47+
<path d="M13.7344 12.0781L10.9609 17.6211L8.1875 12.0781H13.7344Z" fill="currentColor"></path>
48+
</svg>
49+
</button>
50+
</th>
51+
52+
<th role="columnheader" class="" scope="col"></th>
53+
54+
</tr>
55+
</thead>
56+
57+
<style>
58+
.govuk-table__header {
59+
padding: 10px 20px 10px 0;
60+
text-align: left;
61+
vertical-align: top;
62+
}
63+
64+
[aria-sort] button, [aria-sort] button:hover {
65+
align-items: center;
66+
background-color: initial;
67+
border-width: 0;
68+
box-shadow: 0 0 0 0;
69+
color: #005ea5;
70+
cursor: pointer;
71+
display: inline-flex;
72+
font-family: inherit;
73+
font-size: inherit;
74+
font-size: 1em;
75+
font-weight: inherit;
76+
margin: 0;
77+
padding: 0;
78+
position: relative;
79+
text-align: inherit;
80+
}
81+
</style>
82+
83+
<tbody class="nhsuk-table__body">
84+
<tr role="row" class="nhsuk-table__row">
85+
<td role="cell" class="nhsuk-table__cell">
86+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Name</span>Sam Smith
87+
</td>
88+
<td role="cell" class="nhsuk-table__cell">
89+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Matched</span>Yes
90+
</td>
91+
<td role="cell" class="nhsuk-table__cell">
92+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">In catchment</span>Yes
93+
</td>
94+
<td role="cell" class="nhsuk-table__cell">
95+
<a href="reg-detail-multi-detail">View details</a>
96+
</td>
97+
</tr>
98+
99+
<tr role="row" class="nhsuk-table__row">
100+
<td role="cell" class="nhsuk-table__cell">
101+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Name</span>Michael Chambers
102+
</td>
103+
<td role="cell" class="nhsuk-table__cell">
104+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Matched</span>Matched
105+
</td>
106+
<td role="cell" class="nhsuk-table__cell">
107+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">In catchment</span>Out of catchment
108+
</td>
109+
<td role="cell" class="nhsuk-table__cell">
110+
<a href="reg-detail-multi-detail-child">View details</a>
111+
</td>
112+
</tr>
113+
<tr role="row" class="nhsuk-table__row">
114+
<td role="cell" class="nhsuk-table__cell">
115+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Name</span>Gwyn West
116+
</td>
117+
<td role="cell" class="nhsuk-table__cell">
118+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Matched</span>Yes
119+
</td>
120+
<td role="cell" class="nhsuk-table__cell">
121+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">In catchment</span>Yes
122+
</td>
123+
<td role="cell" class="nhsuk-table__cell">
124+
<a href="#">View details</a>
125+
</td>
126+
</tr>
127+
128+
<tr role="row" class="nhsuk-table__row">
129+
<td role="cell" class="nhsuk-table__cell">
130+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Name</span>Jodie Lodge
131+
</td>
132+
<td role="cell" class="nhsuk-table__cell">
133+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">Matched</span>Yes
134+
</td>
135+
<td role="cell" class="nhsuk-table__cell">
136+
<span class="nhsuk-table-responsive__heading" aria-hidden="true">In catchment</span>Yes
137+
</td>
138+
<td role="cell" class="nhsuk-table__cell">
139+
<a href="#">View details</a>
140+
</td>
141+
</tr>
142+
143+
</tbody>
144+
</table>
145+
146+
<nav class="nhsuk-pagination" role="navigation" aria-label="Pagination">
147+
<ul class="nhsuk-list nhsuk-pagination__list">
148+
<li class="gpreg-pagination-item--previous">
149+
<a class="nhsuk-pagination__link nhsuk-pagination__link--prev" href="reg-table-v2-yes-no">
150+
<span class="nhsuk-pagination__title">Previous<span class="nhsuk-u-visually-hidden"> page</span></span>
151+
<svg class="nhsuk-icon gpreg-icon--arrow-left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" focusable="false" aria-hidden="true">
152+
<path d="M10.7 6.3c.4.4.4 1 0 1.4L7.4 11H19a1 1 0 0 1 0 2H7.4l3.3 3.3c.4.4.4 1 0 1.4a1 1 0 0 1-1.4 0l-5-5A1 1 0 0 1 4 12c0-.3.1-.5.3-.7l5-5a1 1 0 0 1 1.4 0Z" />
153+
</svg>
154+
</a>
155+
</li>
156+
<li class="gpreg-pagination-item--next">
157+
<a class="nhsuk-pagination__link nhsuk-pagination__link--next" href="reg-table-v2-yes-no-page-2">
158+
<span class="nhsuk-pagination__title">Next<span class="nhsuk-u-visually-hidden"> page</span></span>
159+
<svg class="nhsuk-icon gpreg-icon--arrow-right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" focusable="false" aria-hidden="true">
160+
<path d="m14.7 6.3 5 5c.2.2.3.4.3.7 0 .3-.1.5-.3.7l-5 5a1 1 0 0 1-1.4-1.4l3.3-3.3H5a1 1 0 0 1 0-2h11.6l-3.3-3.3a1 1 0 1 1 1.4-1.4Z" />
161+
</svg>
162+
</a>
163+
</li>
164+
</ul>
165+
</nav>
166+
167+
<h2 class="nhsuk-heading-l nhsuk-u-padding-top-6">Support</h2>
168+
<p>You can contact us by raising a Service Now ticket in NHS Profile Manager.</p>
169+
170+
</div>
171+
</div>
172+
173+
<style>
174+
.gpreg-pagination-item--previous {
175+
float: left;
176+
margin-right: 32px;
177+
padding-left: 32px;
178+
}
179+
180+
.gpreg-icon--arrow-left {
181+
position: absolute;
182+
top: -2px;
183+
left: -38px;
184+
}
185+
186+
.gpreg-pagination-item--next {
187+
float: left;
188+
}
189+
190+
.gpreg-icon--arrow-right {
191+
position: absolute;
192+
top: -2px;
193+
right: -38px;
194+
}
195+
</style>
196+
197+
198+
199+
{% endblock %}
200+
201+
{% block pageScripts %}
202+
203+
204+
{% endblock %}

0 commit comments

Comments
 (0)