x
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<div class="tw:flex tw:h-screen tw:overflow-hidden"> <nav class="tw:w-20 tw:bg-white tw:border-r tw:border-[#e9ecef] tw:flex tw:flex-col tw:items-center tw:shrink-0 tw:h-full" aria-label="Student portal navigation"> <!-- Logos --> <div class="tw:flex tw:flex-col tw:items-center tw:gap-1 tw:pt-2.5 tw:pb-2 tw:w-full tw:border-b tw:border-[#f0f0f0]"> <div class="tw:w-9 tw:h-9 tw:bg-[#e53e3e] tw:rounded-md tw:flex tw:items-center tw:justify-center tw:font-heading tw:font-black tw:text-[14px] tw:leading-none tw:text-white" aria-hidden="true"> A<sup class="tw:text-[8px]">+</sup> </div> <div class="tw:w-8 tw:h-8 tw:bg-[#e9f0ff] tw:rounded tw:flex tw:items-center tw:justify-center tw:text-[14px] tw:text-[#2b48da]" aria-hidden="true"> <i class="fa-regular fa-shield"></i> </div> </div> <!-- Nav --> <button type="button" class="tw:w-full tw:flex tw:flex-col tw:items-center tw:justify-center tw:py-3.5 tw:gap-0.5 tw:bg-transparent tw:border-0 tw:cursor-pointer tw:hover:bg-[#f8f9fa]"> <i class="fa-regular fa-house tw:text-[22px] tw:text-[rgb(101,116,144)] tw:block" aria-hidden="true"></i> <span class="tw:text-[10px] tw:text-[rgb(101,116,144)] tw:tracking-[0.04em] tw:font-sans tw:mt-1">HOME</span> </button> <button type="button" class="tw:w-full tw:flex tw:flex-col tw:items-center tw:justify-center tw:py-3.5 tw:gap-0.5 tw:bg-transparent tw:border-0 tw:cursor-pointer tw:hover:bg-[#f8f9fa]"> <i class="fa-regular fa-comment-dots tw:text-[22px] tw:text-[rgb(101,116,144)] tw:block" aria-hidden="true"></i> <span class="tw:text-[10px] tw:text-[rgb(101,116,144)] tw:tracking-[0.04em] tw:font-sans tw:mt-1">MESSAGES</span> </button> <button type="button" class="tw:w-full tw:flex tw:flex-col tw:items-center tw:justify-center tw:py-3.5 tw:gap-0.5 tw:bg-transparent tw:border-0 tw:cursor-pointer tw:hover:bg-[#f8f9fa]"> <i class="fa-regular fa-folder tw:text-[22px] tw:text-[rgb(101,116,144)] tw:block" aria-hidden="true"></i> <span class="tw:text-[10px] tw:text-[rgb(101,116,144)] tw:tracking-[0.04em] tw:font-sans tw:mt-1">DOCUMENTS</span> </button> <button type="button" class="tw:w-full tw:flex tw:flex-col tw:items-center tw:justify-center tw:py-3.5 tw:gap-0.5 tw:bg-transparent tw:border-0 tw:cursor-pointer tw:hover:bg-[#f8f9fa]"> <i class="fa-regular fa-calendar-days tw:text-[22px] tw:text-[rgb(101,116,144)] tw:block" aria-hidden="true"></i> <span class="tw:text-[10px] tw:text-[rgb(101,116,144)] tw:tracking-[0.04em] tw:font-sans tw:mt-1">CALENDAR</span> </button> <!-- Back to admin --> <button type="button" class="tw:mt-auto tw:w-full tw:flex tw:flex-col tw:items-center tw:justify-center tw:py-3.5 tw:bg-transparent tw:border-0 tw:cursor-pointer tw:border-t tw:border-[#f0f0f0] tw:hover:bg-[#f8f9fa]"> <i class="fa-regular fa-right-to-bracket tw:-scale-x-100 tw:text-[20px] tw:text-[rgb(101,116,144)] tw:block" aria-hidden="true"></i> <span class="tw:text-[9px] tw:text-[rgb(101,116,144)] tw:tracking-[0.04em] tw:mt-1 tw:text-center tw:leading-[1.3]">BACK TO<br> ADMIN</span> </button> </nav> <div class="tw:flex-1 tw:flex tw:flex-col tw:overflow-hidden"> <nav class="tw:flex tw:bg-[#f8f9fa] tw:border-b-2 tw:border-[#e9ecef] tw:shrink-0" aria-label="Application steps"> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-transparent tw:bg-transparent" > <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <i class="fa-solid fa-check tw:text-[9px] tw:text-[#28a745]" aria-hidden="true"></i> <span class="tw:bg-[#d4edda] tw:text-[#28a745] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 1</span> </div> <span class="tw:text-[11px] tw:text-[rgb(108,122,134)] tw:font-semibold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Student Basic Details</span> </div> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-transparent tw:bg-transparent" > <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <i class="fa-solid fa-check tw:text-[9px] tw:text-[#28a745]" aria-hidden="true"></i> <span class="tw:bg-[#d4edda] tw:text-[#28a745] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 2</span> </div> <span class="tw:text-[11px] tw:text-[rgb(108,122,134)] tw:font-semibold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Parent/Carer Details</span> </div> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-transparent tw:bg-transparent" > <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <i class="fa-solid fa-check tw:text-[9px] tw:text-[#28a745]" aria-hidden="true"></i> <span class="tw:bg-[#d4edda] tw:text-[#28a745] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 3</span> </div> <span class="tw:text-[11px] tw:text-[rgb(108,122,134)] tw:font-semibold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Pathway</span> </div> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-[#16b4fc] tw:bg-white" aria-current="step"> <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <i class="fa-solid fa-check tw:text-[9px] tw:text-[#7b3fb0]" aria-hidden="true"></i> <span class="tw:bg-[#ece1f7] tw:text-[#7b3fb0] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 4</span> </div> <span class="tw:text-[11px] tw:text-[rgb(38,43,54)] tw:font-bold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Courses</span> </div> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-transparent tw:bg-transparent" > <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <span class="tw:bg-[#e9ecef] tw:text-[#6c757d] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 5</span> </div> <span class="tw:text-[11px] tw:text-[rgb(108,122,134)] tw:font-semibold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Additional Information</span> </div> <div class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:justify-center tw:px-1.5 tw:py-2.5 tw:min-w-0 tw:cursor-pointer tw:border-b-[3px] tw:border-transparent tw:bg-transparent" > <div class="tw:flex tw:items-center tw:gap-[5px] tw:mb-[3px]"> <span class="tw:bg-[#e9ecef] tw:text-[#6c757d] tw:rounded-[3px] tw:px-1.5 tw:py-px tw:text-[10px] tw:font-bold tw:whitespace-nowrap">Step 6</span> </div> <span class="tw:text-[11px] tw:text-[rgb(108,122,134)] tw:font-semibold tw:text-center tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis tw:max-w-full">Consents and Information</span> </div> </nav> <div class="tw:flex-1 tw:overflow-y-auto tw:bg-[#f8f9fa]"> <div class="tw:px-6 tw:py-3"> <!-- Top bar: Previous | Selected tags | Submit --> <div class="tw:flex tw:items-start tw:gap-2.5 tw:mb-2"> <!-- Left column: Previous + selection summary --> <div class="tw:shrink-0 tw:w-[238px]"> <button type="button" class="tw:w-full tw:bg-[rgb(38,60,145)] tw:text-white tw:border-0 tw:rounded tw:px-3.5 tw:py-1.5 tw:text-sm tw:font-semibold tw:cursor-pointer tw:mb-1.5"> Previous </button> <div class="tw:text-[13px] tw:font-bold tw:text-[rgb(38,43,54)] tw:mb-1">Your selection</div> <div class="tw:text-xs tw:text-[#555]"> Your total learning hours <span class="tw:bg-[rgb(93,202,115)] tw:text-white tw:rounded tw:px-1.5 tw:py-px tw:text-[11px] tw:font-bold tw:ml-1">200</span> </div> </div> <!-- Selected course tags --> <div class="tw:flex-1 tw:min-h-[38px] tw:border tw:border-[#dee2e6] tw:rounded tw:bg-white tw:px-2 tw:py-1.5 tw:flex tw:flex-wrap tw:content-start tw:items-center tw:gap-1.5"> <span class="tw:inline-flex tw:items-center tw:gap-0.5 tw:bg-[rgb(221,221,221)] tw:text-[rgb(38,43,54)] tw:rounded tw:pl-2 tw:pr-1.5 tw:py-1 tw:text-sm"> A-Level Biology <button type="button" class="tw:bg-transparent tw:border-0 tw:cursor-pointer tw:text-[rgb(38,43,54)] tw:text-[15px] tw:leading-none tw:px-0.5 tw:ml-0.5" aria-label="Remove A-Level Biology">×</button> </span> </div> <!-- Submit --> <button type="button" class="tw:shrink-0 tw:bg-[#7c83c8] tw:text-white tw:border-0 tw:rounded tw:px-4.5 tw:py-1.5 tw:text-sm tw:font-semibold tw:cursor-pointer"> Submit </button> </div> <!-- Stats row --> <div class="tw:flex tw:flex-wrap tw:gap-x-7 tw:gap-y-0.5 tw:text-[13px] tw:text-[#555] tw:pb-3 tw:border-b tw:border-[#dee2e6] tw:mb-3.5"> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Minimum learning hours: <strong>0</strong> </span> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Maximum learning hours: <strong>0</strong> </span> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Maximum subjects to be selected: <strong>3</strong> </span> <span> <i class="fa-solid fa-exclamation tw:text-[#f59e0b] tw:mr-1" aria-hidden="true"></i> Minimum subjects to be selected: <u class="tw:text-[#2b48da] tw:cursor-pointer tw:no-underline tw:border-b tw:border-[#2b48da]"><strong>3</strong></u> </span> </div> <!-- Pathway-context banner --> <div class="tw:border-l-[3px] tw:border-[#6f42c1] tw:bg-[#f3effb] tw:rounded-r-md tw:px-3.5 tw:py-2.5 tw:text-[13px] tw:text-[#4a2f86] tw:flex tw:gap-2.5 tw:items-start tw:mb-3.5"> <i class="fa-solid fa-route tw:mt-px tw:shrink-0 tw:text-sm" aria-hidden="true"></i> <span> Showing the subjects available in <strong>Pathway 3 — APS 6+ : any three A Levels</strong>. To change pathway, use <strong>Previous</strong>. </span> </div> <!-- Pre-selection callout --> <div class="tw:border-l-[3px] tw:border-[#3478f7] tw:bg-[#eff6ff] tw:rounded-r-md tw:px-3.5 tw:py-2.5 tw:text-[13px] tw:text-[#1e4fb5] tw:flex tw:gap-2.5 tw:items-start tw:mb-3.5"> <i class="fa-regular fa-circle-info tw:mt-px tw:shrink-0 tw:text-sm" aria-hidden="true"></i> <span> <strong>A-Level Biology</strong> has been pre-selected because you arrived via a course-specific link. You can still add or remove other courses below. </span> </div> <!-- Course picker heading --> <h2 class="tw:text-[15px] tw:font-normal tw:text-[rgb(38,43,54)] tw:mb-2.5">Select the course you are interested in:</h2> <!-- Search --> <div class="tw:mb-3.5 tw:flex tw:items-center tw:gap-2.5"> <div class="tw:flex tw:items-center tw:border tw:border-[#dee2e6] tw:rounded tw:bg-white tw:px-2.5 tw:h-[38px] tw:w-[55%] tw:gap-2"> <i class="fa-solid fa-magnifying-glass tw:text-[#aaa] tw:text-xs" aria-hidden="true"></i> <input type="search" placeholder="Search subjects here" aria-label="Search subjects" class="tw:flex-1 tw:border-0 tw:outline-none tw:text-sm tw:bg-transparent tw:focus:ring-2 tw:focus:ring-[#2b48da]/40"> <i class="fa-solid fa-chevron-down tw:text-[#aaa] tw:text-[11px]" aria-hidden="true"></i> </div> </div> <!-- 3-column card masonry — filtered to Pathway 3's course list (A_LEVELS_ALL, 16 A-Levels) --> <div class="tw:columns-3 tw:gap-4"> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A-Level Psychology</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A-Level Mathematics</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#c5cae9] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A-Level Biology</a> <span class="tw:ml-2 tw:text-[11px] tw:text-[#2b48da] tw:font-semibold">pre-selected</span> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(187,134,239)] tw:text-white tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Deselect </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A-Level History</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">Computer Science A-Level</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A-Level English Literature</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Art and Design</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Chemistry</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Drama</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level English Language</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Law</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level PE</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Physics</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Product Design</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">A Level Spanish</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 200</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> <div class="tw:bg-white tw:border tw:border-[#dee2e6] tw:rounded tw:mb-3.5 tw:break-inside-avoid tw:overflow-hidden tw:inline-block tw:w-full"> <div class="tw:px-3.5 tw:py-2.5 tw:flex tw:flex-col tw:gap-[5px]"> <h5 class="tw:m-0 tw:text-[14px] tw:font-normal"> <a href="#" class="tw:text-[#007bff] tw:underline">Ancient History</a> </h5> <p class="tw:m-0 tw:text-[13px] tw:text-[rgb(38,43,54)]">Learning hours 180</p> <div> <button type="button" class="tw:bg-[rgb(93,202,115)] tw:text-[rgb(235,242,254)] tw:border-0 tw:rounded tw:px-3 tw:py-[5px] tw:text-[13px] tw:font-semibold tw:cursor-pointer"> Select </button> </div> </div> </div> </div> </div> </div> </div></div>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
<%# ds:allow raw-hex — faithful translation of the ApplicaaOne student portal (CourseFirstApplications/StudentFlow.jsx); the palette is that product's, not DS+ %><%# Course-First Applications — Student Portal: Courses step INSIDE the matching pathway (AC6) %><%# Pathway-trio decision: A-Level Biology is the pre-linked course (Pathway 3 membership only). The student picked Pathway 3 ("APS 6+ : any three A Levels"), which CONTAINS A-Level Biology, so the pre-selection is kept rather than dropped. Contrast with the "different pathway" case (student_courses_pathway_alt) where the pre-selected course is removed instead. Reference: CourseFirstApplications/StudentFlow.jsx:993-1168 (CoursesScreen, pathway branch), :1102-1107 (pathway-context banner), :37-42 (A_LEVELS_ALL — Pathway 3's course list). %><div class="tw:flex tw:h-screen tw:overflow-hidden"> <%= render "projects/course_first_preview/student_app_rail" %> <div class="tw:flex-1 tw:flex tw:flex-col tw:overflow-hidden"> <%= render "projects/course_first_preview/student_step_nav", pathways_on: true, active: "courses" %> <div class="tw:flex-1 tw:overflow-y-auto tw:bg-[#f8f9fa]"> <div class="tw:px-6 tw:py-3"> <!-- Top bar: Previous | Selected tags | Submit --> <div class="tw:flex tw:items-start tw:gap-2.5 tw:mb-2"> <!-- Left column: Previous + selection summary --> <div class="tw:shrink-0 tw:w-[238px]"> <button type="button" class="tw:w-full tw:bg-[rgb(38,60,145)] tw:text-white tw:border-0 tw:rounded tw:px-3.5 tw:py-1.5 tw:text-sm tw:font-semibold tw:cursor-pointer tw:mb-1.5"> Previous </button> <div class="tw:text-[13px] tw:font-bold tw:text-[rgb(38,43,54)] tw:mb-1">Your selection</div> <div class="tw:text-xs tw:text-[#555]"> Your total learning hours <span class="tw:bg-[rgb(93,202,115)] tw:text-white tw:rounded tw:px-1.5 tw:py-px tw:text-[11px] tw:font-bold tw:ml-1">200</span> </div> </div> <!-- Selected course tags --> <div class="tw:flex-1 tw:min-h-[38px] tw:border tw:border-[#dee2e6] tw:rounded tw:bg-white tw:px-2 tw:py-1.5 tw:flex tw:flex-wrap tw:content-start tw:items-center tw:gap-1.5"> <span class="tw:inline-flex tw:items-center tw:gap-0.5 tw:bg-[rgb(221,221,221)] tw:text-[rgb(38,43,54)] tw:rounded tw:pl-2 tw:pr-1.5 tw:py-1 tw:text-sm"> A-Level Biology <button type="button" class="tw:bg-transparent tw:border-0 tw:cursor-pointer tw:text-[rgb(38,43,54)] tw:text-[15px] tw:leading-none tw:px-0.5 tw:ml-0.5" aria-label="Remove A-Level Biology">×</button> </span> </div> <!-- Submit --> <button type="button" class="tw:shrink-0 tw:bg-[#7c83c8] tw:text-white tw:border-0 tw:rounded tw:px-4.5 tw:py-1.5 tw:text-sm tw:font-semibold tw:cursor-pointer"> Submit </button> </div> <!-- Stats row --> <div class="tw:flex tw:flex-wrap tw:gap-x-7 tw:gap-y-0.5 tw:text-[13px] tw:text-[#555] tw:pb-3 tw:border-b tw:border-[#dee2e6] tw:mb-3.5"> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Minimum learning hours: <strong>0</strong> </span> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Maximum learning hours: <strong>0</strong> </span> <span> <i class="fa-solid fa-check tw:text-[#28a745] tw:mr-1" aria-hidden="true"></i> Maximum subjects to be selected: <strong>3</strong> </span> <span> <i class="fa-solid fa-exclamation tw:text-[#f59e0b] tw:mr-1" aria-hidden="true"></i> Minimum subjects to be selected: <u class="tw:text-[#2b48da] tw:cursor-pointer tw:no-underline tw:border-b tw:border-[#2b48da]"><strong>3</strong></u> </span> </div> <!-- Pathway-context banner --> <div class="tw:border-l-[3px] tw:border-[#6f42c1] tw:bg-[#f3effb] tw:rounded-r-md tw:px-3.5 tw:py-2.5 tw:text-[13px] tw:text-[#4a2f86] tw:flex tw:gap-2.5 tw:items-start tw:mb-3.5"> <i class="fa-solid fa-route tw:mt-px tw:shrink-0 tw:text-sm" aria-hidden="true"></i> <span> Showing the subjects available in <strong>Pathway 3 — APS 6+ : any three A Levels</strong>. To change pathway, use <strong>Previous</strong>. </span> </div> <!-- Pre-selection callout --> <div class="tw:border-l-[3px] tw:border-[#3478f7] tw:bg-[#eff6ff] tw:rounded-r-md tw:px-3.5 tw:py-2.5 tw:text-[13px] tw:text-[#1e4fb5] tw:flex tw:gap-2.5 tw:items-start tw:mb-3.5"> <i class="fa-regular fa-circle-info tw:mt-px tw:shrink-0 tw:text-sm" aria-hidden="true"></i> <span> <strong>A-Level Biology</strong> has been pre-selected because you arrived via a course-specific link. You can still add or remove other courses below. </span> </div> <!-- Course picker heading --> <h2 class="tw:text-[15px] tw:font-normal tw:text-[rgb(38,43,54)] tw:mb-2.5">Select the course you are interested in:</h2> <!-- Search --> <div class="tw:mb-3.5 tw:flex tw:items-center tw:gap-2.5"> <div class="tw:flex tw:items-center tw:border tw:border-[#dee2e6] tw:rounded tw:bg-white tw:px-2.5 tw:h-[38px] tw:w-[55%] tw:gap-2"> <i class="fa-solid fa-magnifying-glass tw:text-[#aaa] tw:text-xs" aria-hidden="true"></i> <input type="search" placeholder="Search subjects here" aria-label="Search subjects" class="tw:flex-1 tw:border-0 tw:outline-none tw:text-sm tw:bg-transparent tw:focus:ring-2 tw:focus:ring-[#2b48da]/40"> <i class="fa-solid fa-chevron-down tw:text-[#aaa] tw:text-[11px]" aria-hidden="true"></i> </div> </div> <!-- 3-column card masonry — filtered to Pathway 3's course list (A_LEVELS_ALL, 16 A-Levels) --> <div class="tw:columns-3 tw:gap-4"> <%= render "projects/course_first_preview/course_card", name: "A-Level Psychology", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A-Level Mathematics", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A-Level Biology", hours: 200, selected: true, prelinked: true %> <%= render "projects/course_first_preview/course_card", name: "A-Level History", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "Computer Science A-Level", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A-Level English Literature", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Art and Design", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Chemistry", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Drama", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level English Language", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Law", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level PE", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Physics", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Product Design", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "A Level Spanish", hours: 200, selected: false %> <%= render "projects/course_first_preview/course_card", name: "Ancient History", hours: 180, selected: false %> </div> </div> </div> </div></div>No notes provided.
No params configured.