22 lines
951 B
HTML
22 lines
951 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Request Received</title>
|
|
<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=Outfit:wght@500;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/booth.css') }}">
|
|
</head>
|
|
<body class="booth-page center-content">
|
|
<div class="container">
|
|
<div class="card text-center">
|
|
<h1 class="success">Request Received</h1>
|
|
<p>Thanks, {{ req.name }}! We'll craft your song and email you a link when it's ready.</p>
|
|
<p><strong>Your request number:</strong> #{{ req.id }}</p>
|
|
<p class="copy-hint">Bring this number to the booth if you want to check on progress.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|