-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevaluation-choice.html
More file actions
73 lines (56 loc) · 1.81 KB
/
evaluation-choice.html
File metadata and controls
73 lines (56 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{% extends 'layout.html' %}
{% set pageName = "Quick share evaluation" %}
{% set serviceHeader = "Search and evaluate medtech" %}
{% block beforeContent %}
{{ breadcrumb({
items: [
{
text: "Home",
href: "/"
},
{
text: "Share evaluation",
href: "/share-evaluation"
}
],
attributes: {
"aria-label": "Breadcrumb"
}
}) }}
{% endblock %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full">
<h1 class="nhsuk-heading-xl">Share your evaluation</h1>
<p class="nhsuk-body-l">Choose how you'd like to share your evaluation:</p>
<div class="nhsuk-grid-row nhsuk-u-margin-top-6">
<!-- Option 1: Quick Share -->
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="/quick-share-upload">Quick share</a>
</h2>
<p class="nhsuk-card__description">
<strong>Upload existing evaluation documents</strong>
</p>
</div>
</div>
</div>
<!-- Option 2: Full Evaluation -->
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="/evaluation-details">Full evaluation form</a>
</h2>
<p class="nhsuk-card__description">
<strong>Create a structured evaluation</strong>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}