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
<div class="tw:flex tw:flex-col tw:h-screen"> <div class="tw:bg-[#2d2d2d] tw:px-3 tw:py-2 tw:flex tw:items-center tw:gap-2.5 tw:shrink-0"> <!-- Nav buttons (decorative — no navigation in this prototype) --> <div class="tw:flex tw:gap-1.5" aria-hidden="true"> <span class="tw:bg-transparent tw:border-0 tw:text-[#888] tw:w-6 tw:h-6 tw:rounded tw:text-[11px] tw:flex tw:items-center tw:justify-center"> <i class="fa-solid fa-arrow-left"></i> </span> <span class="tw:bg-transparent tw:border-0 tw:text-[#888] tw:w-6 tw:h-6 tw:rounded tw:text-[11px] tw:flex tw:items-center tw:justify-center"> <i class="fa-solid fa-arrow-right"></i> </span> <span class="tw:bg-transparent tw:border-0 tw:text-[#888] tw:w-6 tw:h-6 tw:rounded tw:text-[11px] tw:flex tw:items-center tw:justify-center"> <i class="fa-solid fa-rotate"></i> </span> </div> <!-- Address bar --> <div class="tw:flex-1 tw:bg-[#3d3d3d] tw:rounded-full tw:px-3.5 tw:py-[5px] tw:flex tw:items-center tw:gap-1.5 tw:text-[12px] tw:text-[#ccc] tw:font-mono tw:overflow-hidden"> <i class="fa-solid fa-lock tw:text-[#6cc] tw:text-[10px] tw:shrink-0" aria-hidden="true"></i> <span class="tw:text-[#aaa] tw:shrink-0">https://demo.applicaa.com/2024-25</span> <span class="tw:bg-[rgba(99,200,128,0.2)] tw:text-[#6cd] tw:rounded-[3px] tw:px-1 tw:font-bold tw:shrink-0">?course=a1b2c3d4-e5f6-7890-abcd-ef1234567890</span> <span class="tw:ml-1 tw:text-[#9a9] tw:text-[11px] tw:whitespace-nowrap tw:overflow-hidden tw:text-ellipsis"> → A-Level Psychology </span> </div> </div> <main class="tw:flex-1 tw:overflow-y-auto tw:bg-[linear-gradient(160deg,#c5d0d8_0%,#b2bfc8_35%,#9fadb6_65%,#8d9ba4_100%)] tw:flex tw:items-center tw:justify-center tw:px-6 tw:py-10"> <div class="tw:bg-white tw:rounded tw:px-12 tw:py-10 tw:max-w-[520px] tw:w-full tw:shadow-[0_4px_24px_rgba(0,0,0,0.18)] tw:text-center"> <h2 class="tw:font-heading tw:font-semibold tw:text-[22px] tw:leading-[1.3] tw:text-[rgb(52,52,52)] tw:mb-2.5"> Who’s applying? </h2> <p class="tw:text-[14px] tw:text-[rgb(108,117,125)] tw:leading-[1.55] tw:mb-8"> Please tell us who will be completing this application for Greenford Sixth Form College. </p> <div class="tw:flex tw:gap-4"> <button type="button" class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:gap-2.5 tw:px-4 tw:py-6 tw:bg-white tw:border-2 tw:border-[#dee2e6] tw:rounded-lg tw:cursor-pointer tw:hover:border-[#2b48da] tw:hover:shadow-[0_0_0_4px_rgba(43,72,218,0.12)]"> <i class="fa-regular fa-user tw:text-[30px] tw:text-[#2b48da]" aria-hidden="true"></i> <span class="tw:font-sans tw:font-semibold tw:text-[15px] tw:leading-[1.3] tw:text-[#263C91]">I am the applicant</span> <span class="tw:text-[12px] tw:font-normal tw:text-[#aaa]">Applying for myself</span> </button> <button type="button" class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:gap-2.5 tw:px-4 tw:py-6 tw:bg-white tw:border-2 tw:border-[#dee2e6] tw:rounded-lg tw:cursor-pointer tw:hover:border-[#2b48da] tw:hover:shadow-[0_0_0_4px_rgba(43,72,218,0.12)]"> <i class="fa-regular fa-people-group tw:text-[30px] tw:text-[#2b48da]" aria-hidden="true"></i> <span class="tw:font-sans tw:font-semibold tw:text-[15px] tw:leading-[1.3] tw:text-[#263C91]">I am a parent/carer</span> <span class="tw:text-[12px] tw:font-normal tw:text-[#aaa]">Applying on behalf of my child</span> </button> </div> <div class="tw:mt-6 tw:flex tw:items-center tw:gap-2 tw:px-3.5 tw:py-2.5 tw:bg-[#eff6ff] tw:border tw:border-[#bfdbfe] tw:rounded-md tw:text-[13px] tw:text-[#1e4fb5] tw:text-left"> <i class="fa-regular fa-circle-info tw:shrink-0" aria-hidden="true"></i> <span>Course context retained: <strong class="tw:font-bold">A-Level Psychology</strong></span> </div> </div> </main></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
<%# 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: Who's applying? chooser, config "both" (AC2) %><%# When a school allows both student and parent/carer registration, the prelinked-course URL routes here first so the visitor identifies themselves before the ApplicaaOne email-entry flow branches into student- or parent-specific copy. Course context carries through either choice, shown in the note below. %><%# Reference: CourseFirstApplications/StudentFlow.jsx:205-240 (WhoIsApplyingScreen) %><div class="tw:flex tw:flex-col tw:h-screen"> <%= render "projects/course_first_preview/browser_bar", path: "2024-25", course_id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890", course_name: "A-Level Psychology" %> <main class="tw:flex-1 tw:overflow-y-auto tw:bg-[linear-gradient(160deg,#c5d0d8_0%,#b2bfc8_35%,#9fadb6_65%,#8d9ba4_100%)] tw:flex tw:items-center tw:justify-center tw:px-6 tw:py-10"> <div class="tw:bg-white tw:rounded tw:px-12 tw:py-10 tw:max-w-[520px] tw:w-full tw:shadow-[0_4px_24px_rgba(0,0,0,0.18)] tw:text-center"> <h2 class="tw:font-heading tw:font-semibold tw:text-[22px] tw:leading-[1.3] tw:text-[rgb(52,52,52)] tw:mb-2.5"> Who’s applying? </h2> <p class="tw:text-[14px] tw:text-[rgb(108,117,125)] tw:leading-[1.55] tw:mb-8"> Please tell us who will be completing this application for Greenford Sixth Form College. </p> <div class="tw:flex tw:gap-4"> <button type="button" class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:gap-2.5 tw:px-4 tw:py-6 tw:bg-white tw:border-2 tw:border-[#dee2e6] tw:rounded-lg tw:cursor-pointer tw:hover:border-[#2b48da] tw:hover:shadow-[0_0_0_4px_rgba(43,72,218,0.12)]"> <i class="fa-regular fa-user tw:text-[30px] tw:text-[#2b48da]" aria-hidden="true"></i> <span class="tw:font-sans tw:font-semibold tw:text-[15px] tw:leading-[1.3] tw:text-[#263C91]">I am the applicant</span> <span class="tw:text-[12px] tw:font-normal tw:text-[#aaa]">Applying for myself</span> </button> <button type="button" class="tw:flex-1 tw:flex tw:flex-col tw:items-center tw:gap-2.5 tw:px-4 tw:py-6 tw:bg-white tw:border-2 tw:border-[#dee2e6] tw:rounded-lg tw:cursor-pointer tw:hover:border-[#2b48da] tw:hover:shadow-[0_0_0_4px_rgba(43,72,218,0.12)]"> <i class="fa-regular fa-people-group tw:text-[30px] tw:text-[#2b48da]" aria-hidden="true"></i> <span class="tw:font-sans tw:font-semibold tw:text-[15px] tw:leading-[1.3] tw:text-[#263C91]">I am a parent/carer</span> <span class="tw:text-[12px] tw:font-normal tw:text-[#aaa]">Applying on behalf of my child</span> </button> </div> <div class="tw:mt-6 tw:flex tw:items-center tw:gap-2 tw:px-3.5 tw:py-2.5 tw:bg-[#eff6ff] tw:border tw:border-[#bfdbfe] tw:rounded-md tw:text-[13px] tw:text-[#1e4fb5] tw:text-left"> <i class="fa-regular fa-circle-info tw:shrink-0" aria-hidden="true"></i> <span>Course context retained: <strong class="tw:font-bold">A-Level Psychology</strong></span> </div> </div> </main></div>No notes provided.
No params configured.