Files
whsfund/thank-you.html
2026-03-23 15:29:13 -04:00

83 lines
4.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Thank You - Wesley High School Fundraiser</title>
<meta name="description" content="Thank you for your donation to Wesley High School's 100th Anniversary Celebrations." />
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<!-- Top Header Bar -->
<header class="top-bar">
<div class="top-bar-inner">
<div class="top-bar-left">
<a href="/">
<img src="/images/logo-white.png" alt="Wesley High School" class="top-bar-logo" />
</a>
</div>
<div class="top-bar-right">
<div class="social-icons">
<a href="https://www.facebook.com/WesleyHighSchoolDominica" target="_blank" rel="noopener" aria-label="Facebook" class="social-icon">
<svg viewBox="0 0 24 24" fill="currentColor" width="20" height="20"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
</a>
</div>
</div>
</div>
</header>
<main class="thank-you-page">
<div class="thank-you-card">
<div class="thank-you-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" width="64" height="64">
<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
<polyline points="22 4 12 14.01 9 11.01" />
</svg>
</div>
<h1>Thank You for Your Donation!</h1>
<p>Your generous contribution to the Wesley High School 100th Anniversary Fund has been received and is being processed.</p>
<p>Your name will appear on our donors wall shortly. Together, we are building the next 100 years of excellence.</p>
<div class="thank-you-actions">
<a href="/" class="btn btn-primary btn-large">Return to Homepage</a>
<div class="share-section">
<p class="share-prompt">Spread the word and help us reach our goal!</p>
<div class="share-buttons">
<button class="share-btn share-facebook" id="shareFacebook">
<svg viewBox="0 0 24 24" fill="currentColor" width="18" height="18"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
Share on Facebook
</button>
<button class="share-btn share-email" id="shareEmail">
<svg viewBox="0 0 24 24" fill="currentColor" width="18" height="18"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>
Share via Email
</button>
</div>
</div>
</div>
</div>
</main>
<footer class="site-footer">
<div class="footer-bottom">
<p>Copyright &copy; 2026 Wesley High School. All rights reserved.</p>
</div>
</footer>
<script>
const siteUrl = 'https://alumni.whsdominica.com/';
const text = 'I just donated to Wesley High School\'s 100th Anniversary Fund! Join me in supporting a century of excellence.';
document.getElementById('shareFacebook').addEventListener('click', () => {
window.open('https://www.facebook.com/sharer/sharer.php?u=' + encodeURIComponent(siteUrl), '_blank', 'width=600,height=400');
});
document.getElementById('shareEmail').addEventListener('click', () => {
window.location.href = 'mailto:?subject=' + encodeURIComponent('Support Wesley High School') + '&body=' + encodeURIComponent(text + '\n\n' + siteUrl);
});
</script>
</body>
</html>