Previews

No matching results.

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
<div class="tw:p-6 tw:max-w-3xl tw:mx-auto">
<div class="callout tw:mb-6">
<p class="tw:mb-1 tw:text-sm tw:font-mono">
<strong>FORM WIZARD:</strong> confirmation target<br>
<strong>REACHED FROM:</strong> the Comprehensive scenario's real <code><form method="get"></code> submit — no backend, per the <code>projects/enquiry</code> precedent.
</p>
<p class="tw:mb-0 tw:text-sm">
A real submit navigates the browser here. The wizard controller clears its
<code>sessionStorage</code> mirror immediately before submitting, so a fresh visit to the form
starts clean — the saved draft was cleared on submit, not merely hidden. (Browser Back from this
page may restore the wizard's DOM exactly as it was via bfcache, since <code>connect()</code>
doesn't re-run on a bfcache restore — that's a browser caching detail, not a data-loss bug.)
</p>
</div>
<div class="card card-positive">
<div class="card-body tw:text-center tw:py-10">
<div class="tw:text-4xl tw:text-green-600 tw:mb-3">
<i class="fa-solid fa-circle-check" aria-hidden="true"></i>
</div>
<h1 class="h3 tw:mb-2">Application sent</h1>
<p class="tw:text-body-m tw:leading-body-m tw:text-neutral-700 tw:max-w-md tw:mx-auto tw:mb-0">
Thank you — your application to Hills Road Sixth Form College has been submitted. We've
sent a confirmation email to the address you provided, and the school will be in touch
about next steps.
</p>
</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
<div class="tw:p-6 tw:max-w-3xl tw:mx-auto">
<div class="callout tw:mb-6">
<p class="tw:mb-1 tw:text-sm tw:font-mono">
<strong>FORM WIZARD:</strong> confirmation target<br>
<strong>REACHED FROM:</strong> the Comprehensive scenario's real <code><form method="get"></code> submit — no backend, per the <code>projects/enquiry</code> precedent.
</p>
<p class="tw:mb-0 tw:text-sm">
A real submit navigates the browser here. The wizard controller clears its
<code>sessionStorage</code> mirror immediately before submitting, so a fresh visit to the form
starts clean — the saved draft was cleared on submit, not merely hidden. (Browser Back from this
page may restore the wizard's DOM exactly as it was via bfcache, since <code>connect()</code>
doesn't re-run on a bfcache restore — that's a browser caching detail, not a data-loss bug.)
</p>
</div>
<div class="card card-positive">
<div class="card-body tw:text-center tw:py-10">
<div class="tw:text-4xl tw:text-green-600 tw:mb-3">
<i class="fa-solid fa-circle-check" aria-hidden="true"></i>
</div>
<h1 class="h3 tw:mb-2">Application sent</h1>
<p class="tw:text-body-m tw:leading-body-m tw:text-neutral-700 tw:max-w-md tw:mx-auto tw:mb-0">
Thank you — your application to Hills Road Sixth Form College has been submitted. We've
sent a confirmation email to the address you provided, and the school will be in touch
about next steps.
</p>
</div>
</div>
</div>