44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
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>
|
|
/*
|
|
Simple confirmation page shown after a customer submits a request.
|
|
Gives them a request number they can reference at the booth.
|
|
*/
|
|
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;
|
|
display:flex;
|
|
justify-content:center;
|
|
align-items:center;
|
|
min-height:100vh;
|
|
}
|
|
.container{
|
|
max-width:640px;
|
|
margin:0 auto;
|
|
background:#1f2937;
|
|
padding:1.5rem;
|
|
border-radius:1rem;
|
|
text-align:center;
|
|
}
|
|
h1{color:#34d399;}
|
|
.note{font-size:.9rem;color:#9ca3af;}
|
|
</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>
|