20 lines
No EOL
881 B
HTML
20 lines
No EOL
881 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>
|
|
<a href="https://docs.google.com/spreadsheets/d/{{ event.sheet_id }}" target="_blank" class="btn btn-outline-success">Bekijk deelnemers (Google Sheets)</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |