22 lines
906 B
HTML
22 lines
906 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>
|
|
<style>
|
|
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;background:#111827;color:#f3f4f6;margin:0;padding:1rem;line-height:1.5}
|
|
.container{max-width:640px;margin:0 auto;background:#1f2937;padding:1.5rem;border-radius:1rem;text-align:center}
|
|
h1{color:#34d399}
|
|
.token{font-family:monospace;background:#111827;padding:.6rem;border-radius:.5rem;word-break:break-all}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>✅ 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="note">Bring this number to the booth if you want to check on progress.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|