- Update Google Sheets integration to support optional tab names. - Add functionality to fetch and display public participants. - Revise event configuration in YAML for clarity and consistency. - Improve form layout with additional fields for contact information and meal preferences. - Create a new home page template for event selection. - Update success page to link back to the participants list.
23 lines
No EOL
986 B
HTML
23 lines
No EOL
986 B
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Bedankt!</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light text-center" style="padding-top: 100px;">
|
|
<div class="container">
|
|
<div class="card shadow p-5 mx-auto" style="max-width: 600px;">
|
|
<h1 class="text-success mb-4">Bedankt!</h1>
|
|
<p class="lead">Je inschrijving voor <strong>{{ event.title }}</strong> is ontvangen.</p>
|
|
<p>De gegevens zijn opgeslagen.</p>
|
|
<hr>
|
|
<!-- Link back to the form page, scrolled down to the list -->
|
|
<a href="/{{ slug }}#deelnemers" class="btn btn-primary">Bekijk deelnemerslijst</a>
|
|
<br><br>
|
|
<a href="/" class="btn btn-link text-muted">Terug naar overzicht</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |