2026-05-28 16:20:32 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" data-theme="dark">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
|
<title>Sign-ups — Kingmaker</title>
|
|
|
|
|
<link rel="stylesheet" href="/src/style.css" />
|
|
|
|
|
</head>
|
|
|
|
|
<body class="min-h-screen flex flex-col">
|
|
|
|
|
|
2026-05-28 16:26:59 -05:00
|
|
|
<div id="header"></div>
|
2026-05-28 16:20:32 -05:00
|
|
|
|
|
|
|
|
<!-- ===== MAIN CONTENT ===== -->
|
|
|
|
|
<main class="flex-1 max-w-5xl w-full mx-auto px-6 py-10">
|
|
|
|
|
|
|
|
|
|
<h1 class="text-4xl font-bold mb-4">Sign-ups</h1>
|
|
|
|
|
<p class="text-lg mb-8">Interested in joining the Kingmaker campaign? Fill out the form below to sign up.</p>
|
|
|
|
|
|
|
|
|
|
<div class="divider"></div>
|
|
|
|
|
|
2026-05-28 16:46:06 -05:00
|
|
|
<section class="mb-8">
|
|
|
|
|
<h2 class="text-2xl font-semibold mb-3">League Entry Fee</h2>
|
|
|
|
|
<p class="mb-4">Once you've submitted the sign-up form, please pay your league entry fee via PayPal to secure your spot.</p>
|
|
|
|
|
<a href="https://paypal.me/REDACTED" target="_blank" rel="noopener noreferrer" class="btn btn-primary">
|
|
|
|
|
Pay Entry Fee via PayPal
|
|
|
|
|
</a>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<div class="divider"></div>
|
|
|
|
|
|
2026-05-28 16:20:32 -05:00
|
|
|
<!-- Google Form embed — replace the src URL with your form's embed link -->
|
|
|
|
|
<div class="w-full">
|
|
|
|
|
<iframe
|
|
|
|
|
src="PASTE_GOOGLE_FORM_EMBED_URL_HERE"
|
|
|
|
|
width="100%"
|
|
|
|
|
height="900"
|
|
|
|
|
frameborder="0"
|
|
|
|
|
marginheight="0"
|
|
|
|
|
marginwidth="0"
|
|
|
|
|
class="rounded-box">
|
|
|
|
|
Loading form…
|
|
|
|
|
</iframe>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
|
2026-05-28 16:26:59 -05:00
|
|
|
<div id="footer"></div>
|
2026-05-28 16:20:32 -05:00
|
|
|
|
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|