42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<!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>Game Reporting — Kingmaker</title>
|
|
<link rel="stylesheet" href="/src/style.css" />
|
|
</head>
|
|
<body class="min-h-screen flex flex-col">
|
|
|
|
<div id="header"></div>
|
|
|
|
<!-- ===== 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">Game Reporting</h1>
|
|
<p class="text-lg mb-8">Ran a session? Use the form below to report the game results.</p>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- 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>
|
|
|
|
<div id="footer"></div>
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|