-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsupplier-registration.html
More file actions
226 lines (202 loc) · 6 KB
/
supplier-registration.html
File metadata and controls
226 lines (202 loc) · 6 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
{% extends "layout.html" %}
{% block pageTitle %}
Register Your Company - Supplier Portal
{% endblock %}
{% block beforeContent %}
{% endblock %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h1 class="nhsuk-heading-xl">Register Your Company</h1>
<p class="nhsuk-body-l">Join the NHS supplier passporting system</p>
<form class="form" action="/supplier/register-success" method="post">
{# Company Information #}
<h2 class="nhsuk-heading-l">Company Information</h2>
{{ input({
label: {
text: "Company Name",
classes: "nhsuk-label--m"
},
id: "company-name",
name: "companyName",
autocomplete: "organization"
}) }}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-one-half">
{{ input({
label: {
text: "Company Number"
},
hint: {
text: "e.g., 12345678"
},
id: "company-number",
name: "companyNumber",
classes: "nhsuk-input--width-10"
}) }}
</div>
<div class="nhsuk-grid-column-one-half">
{{ select({
id: "company-type",
name: "companyType",
label: {
text: "Company Type"
},
items: [
{
value: "",
text: "Select type"
},
{
value: "manufacturer",
text: "Manufacturer"
},
{
value: "distributor",
text: "Distributor"
},
{
value: "sme",
text: "SME / Startup"
},
{
value: "large-enterprise",
text: "Large Enterprise"
}
]
}) }}
</div>
</div>
{# Product Categories #}
<h2 class="nhsuk-heading-l nhsuk-!-margin-top-6">Product Categories</h2>
<p class="nhsuk-body">Select all that apply to your products</p>
{{ checkboxes({
name: "productCategories",
fieldset: {
legend: {
text: "Select product categories",
isPageHeading: false,
classes: "nhsuk-visually-hidden"
}
},
items: [
{
value: "diagnostic-imaging",
text: "Diagnostic Imaging"
},
{
value: "surgical-instruments",
text: "Surgical Instruments"
},
{
value: "patient-monitoring",
text: "Patient Monitoring"
},
{
value: "cardiac-devices",
text: "Cardiac Devices"
},
{
value: "respiratory-equipment",
text: "Respiratory Equipment"
},
{
value: "laboratory-equipment",
text: "Laboratory Equipment"
},
{
value: "infusion-devices",
text: "Infusion Devices"
},
{
value: "digital-health",
text: "Digital Health"
}
]
}) }}
{# Primary Contact #}
<h2 class="nhsuk-heading-l nhsuk-!-margin-top-6">Primary Contact</h2>
{{ input({
label: {
text: "Contact Name",
classes: "nhsuk-label--m"
},
id: "contact-name",
name: "contactName",
autocomplete: "name"
}) }}
{{ input({
label: {
text: "Email Address",
classes: "nhsuk-label--m"
},
id: "email",
name: "email",
type: "email",
autocomplete: "email",
spellcheck: false
}) }}
{{ input({
label: {
text: "Phone Number",
classes: "nhsuk-label--m"
},
hint: {
text: "e.g., +44 20 1234 5678"
},
id: "phone",
name: "phone",
type: "tel",
autocomplete: "tel",
classes: "nhsuk-input--width-20"
}) }}
{# Account Security #}
<h2 class="nhsuk-heading-l nhsuk-!-margin-top-6">Account Security</h2>
{{ input({
label: {
text: "Password",
classes: "nhsuk-label--m"
},
hint: {
text: "Must be at least 8 characters with uppercase, lowercase, and numbers"
},
id: "password",
name: "password",
type: "password",
autocomplete: "new-password"
}) }}
{{ input({
label: {
text: "Confirm Password",
classes: "nhsuk-label--m"
},
id: "confirm-password",
name: "confirmPassword",
type: "password",
autocomplete: "new-password"
}) }}
{# Terms and Conditions #}
<div class="nhsuk-!-margin-top-6">
{{ checkboxes({
name: "acceptTerms",
items: [
{
value: "yes",
text: "I confirm that I am authorized to register this company on Compass, and I agree to the Terms of Service and Data Processing Agreement. I understand that submitted information will be visible to NHS procurement teams.",
hint: {
text: "You must accept the terms to continue"
}
}
]
}) }}
</div>
<div class="nhsuk-button-group nhsuk-!-margin-top-6">
{{ button({
text: "Create Account"
}) }}
<a class="nhsuk-link" href="/supplier/login">Already have an account?</a>
</div>
</form>
</div>
</div>
{% endblock %}