Thankyou page
This commit is contained in:
@@ -0,0 +1,244 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-AU">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Your RTOSure demo booking request has been received. Our team will confirm your demo time within one business day.">
|
||||
<title>Demo Request Received - RTOSure</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<style>
|
||||
body { padding-top: 68px; }
|
||||
|
||||
.page-hero {
|
||||
background: var(--color-navy);
|
||||
padding-block: clamp(48px,7vw,88px);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.page-hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background: radial-gradient(ellipse 70% 60% at 80% 50%, var(--color-teal-on-dark-bg), transparent 70%);
|
||||
}
|
||||
.page-hero::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
background-image: radial-gradient(var(--color-on-dark-surface) 1px, transparent 1px);
|
||||
background-size: 32px 32px;
|
||||
}
|
||||
.page-hero-inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 760px;
|
||||
}
|
||||
.page-hero-label {
|
||||
display: block;
|
||||
margin-bottom: var(--space-md);
|
||||
color: var(--color-teal);
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
letter-spacing: .12em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.page-hero h1 {
|
||||
margin-bottom: var(--space-lg);
|
||||
color: var(--color-white);
|
||||
font-family: var(--font-display);
|
||||
font-size: clamp(34px,5vw,60px);
|
||||
line-height: 1.08;
|
||||
letter-spacing: -.025em;
|
||||
}
|
||||
.page-hero h1 .accent { color: var(--color-teal); }
|
||||
.page-hero p {
|
||||
max-width: 620px;
|
||||
color: var(--color-on-dark-text);
|
||||
font-size: clamp(16px,1.6vw,19px);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.content-section { padding-block: var(--space-3xl); }
|
||||
.confirmation-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 1.1fr .9fr;
|
||||
gap: var(--space-2xl);
|
||||
align-items: start;
|
||||
}
|
||||
.confirmation-panel {
|
||||
background: var(--color-white);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-xl);
|
||||
padding: var(--space-2xl);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
.success-icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin-bottom: var(--space-lg);
|
||||
border-radius: 50%;
|
||||
background: var(--color-teal-light);
|
||||
border: 1px solid var(--color-teal-mid);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--color-teal-dark);
|
||||
}
|
||||
.success-icon svg {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
.confirmation-panel h2 {
|
||||
margin-bottom: var(--space-md);
|
||||
color: var(--color-navy);
|
||||
font-size: clamp(26px,3vw,38px);
|
||||
letter-spacing: -.02em;
|
||||
}
|
||||
.confirmation-panel p {
|
||||
color: var(--color-slate);
|
||||
font-size: 16px;
|
||||
line-height: 1.75;
|
||||
}
|
||||
.next-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-md);
|
||||
margin-top: var(--space-xl);
|
||||
}
|
||||
.next-item {
|
||||
display: flex;
|
||||
gap: var(--space-md);
|
||||
align-items: flex-start;
|
||||
padding-top: var(--space-md);
|
||||
border-top: 1px solid var(--color-border);
|
||||
}
|
||||
.next-number {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-teal);
|
||||
color: var(--color-white);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.next-item strong {
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
color: var(--color-navy);
|
||||
}
|
||||
.next-item span {
|
||||
display: block;
|
||||
color: var(--color-slate);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.support-card {
|
||||
background: var(--color-surface);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-xl);
|
||||
padding: var(--space-xl);
|
||||
}
|
||||
.support-card h3 {
|
||||
margin-bottom: var(--space-sm);
|
||||
color: var(--color-navy);
|
||||
font-size: 18px;
|
||||
}
|
||||
.support-card p {
|
||||
margin-bottom: var(--space-lg);
|
||||
color: var(--color-slate);
|
||||
font-size: 14px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
.support-card a:not(.btn) {
|
||||
color: var(--color-teal);
|
||||
font-weight: 600;
|
||||
}
|
||||
.action-row {
|
||||
display: flex;
|
||||
gap: var(--space-md);
|
||||
flex-wrap: wrap;
|
||||
margin-top: var(--space-xl);
|
||||
}
|
||||
@media(max-width:768px) {
|
||||
.confirmation-layout { grid-template-columns: 1fr; }
|
||||
.confirmation-panel,
|
||||
.support-card { padding: var(--space-xl); }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="site-header"></div>
|
||||
|
||||
<section class="page-hero" aria-labelledby="thank-you-h1">
|
||||
<div class="container">
|
||||
<div class="page-hero-inner">
|
||||
<span class="page-hero-label">Demo request received</span>
|
||||
<h1 id="thank-you-h1">Thanks.<br><span class="accent">Your demo request is in.</span></h1>
|
||||
<p>We have received your RTOSure demo booking request. Our team will review your details and send through a calendar link within one business day.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="content-section" aria-label="Demo booking confirmation">
|
||||
<div class="container">
|
||||
<div class="confirmation-layout">
|
||||
<div class="confirmation-panel">
|
||||
<div class="success-icon" aria-hidden="true">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M20 6L9 17l-5-5"/>
|
||||
</svg>
|
||||
</div>
|
||||
<h2>Your booking request has been submitted.</h2>
|
||||
<p>We will tailor the demo around the compliance frameworks you selected, so the walkthrough is relevant to your college from the start.</p>
|
||||
|
||||
<div class="next-list">
|
||||
<div class="next-item">
|
||||
<div class="next-number">1</div>
|
||||
<div><strong>We review your submission</strong><span>Our team checks your organisation details and the frameworks you selected.</span></div>
|
||||
</div>
|
||||
<div class="next-item">
|
||||
<div class="next-number">2</div>
|
||||
<div><strong>We send a calendar link</strong><span>You will receive available times for a 30-minute demo during Australian business hours.</span></div>
|
||||
</div>
|
||||
<div class="next-item">
|
||||
<div class="next-number">3</div>
|
||||
<div><strong>Your demo is tailored</strong><span>We focus on the NVR, ESOS, National Code, CRICOS, or ELICOS areas that apply to you.</span></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="action-row">
|
||||
<a href="index.html" class="btn btn-primary">Back to home</a>
|
||||
<a href="features.html" class="btn btn-outline">Explore features</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<aside class="support-card" aria-label="Need help">
|
||||
<h3>Need to add something?</h3>
|
||||
<p>If you forgot to include a detail or need help before the call, email us and we will connect it to your demo request.</p>
|
||||
<p><a href="mailto:support@rtosoftware.com.au">support@rtosoftware.com.au</a></p>
|
||||
<a href="contact.html" class="btn btn-outline">Contact us</a>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div id="site-footer"></div>
|
||||
|
||||
<script>
|
||||
(function(){
|
||||
function loadComp(id,f){var el=document.getElementById(id);if(!el)return;fetch(f).then(function(r){return r.text();}).then(function(h){el.innerHTML=h;el.querySelectorAll('script').forEach(function(s){var n=document.createElement('script');n.textContent=s.textContent;document.head.appendChild(n);});});}
|
||||
loadComp('site-header','header.html');
|
||||
loadComp('site-footer','footer.html');
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user