File size: 18,548 Bytes
1d0466d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Booking Confirmation | Event Management</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.confetti {
position: fixed;
width: 10px;
height: 10px;
background-color: #f00;
opacity: 0.7;
animation: fall linear forwards;
}
@keyframes fall {
to {
transform: translateY(100vh);
}
}
.checked-in {
box-shadow: 0 0 10px 3px rgba(34, 197, 94, 0.5);
border: 2px solid #22c55e;
}
.qr-code {
transition: all 0.3s ease;
}
.qr-code:hover {
transform: scale(1.05);
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<div class="container mx-auto px-4 py-12">
<!-- Main Booking Confirmation Card -->
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden transition-all duration-300 hover:shadow-xl">
<div class="p-1 bg-gradient-to-r from-purple-600 via-pink-500 to-red-500"></div>
<div class="p-8">
<!-- Header -->
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-8">
<div>
<div class="flex items-center space-x-2">
<i class="fas fa-calendar-check text-3xl text-purple-600"></i>
<h1 class="text-3xl font-bold text-gray-800">Booking Confirmed!</h1>
</div>
<p class="text-gray-600 mt-2">Thank you for your booking. Here are your details.</p>
</div>
<div class="mt-4 md:mt-0 bg-purple-100 text-purple-800 px-4 py-2 rounded-lg font-medium">
<i class="fas fa-bolt mr-1"></i> Status: Confirmed
</div>
</div>
<div class="border-b border-gray-200 my-6"></div>
<!-- Booking Details -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h2 class="text-xl font-semibold text-gray-800 mb-4">Booking Information</h2>
<div class="space-y-4">
<div>
<p class="text-sm text-gray-500">Booking ID</p>
<div id="bookingId" class="flex items-center mt-1">
<span class="font-mono bg-gray-100 px-3 py-1 rounded text-gray-800 text-lg font-bold">#</span>
<button onclick="copyBookingId()" class="ml-2 text-purple-600 hover:text-purple-800 transition">
<i class="far fa-copy"></i> Copy
</button>
</div>
</div>
<div>
<p class="text-sm text-gray-500">Event Name</p>
<p class="font-medium text-gray-800">LIVE Music Night with The Midnight Stars</p>
</div>
<div>
<p class="text-sm text-gray-500">Date & Time</p>
<p class="font-medium text-gray-800">June 15, 2023 • 7:00 PM - 10:00 PM</p>
</div>
<div>
<p class="text-sm text-gray-500">Location</p>
<p class="font-medium text-gray-800">Grand Ballroom, The Plaza Hotel</p>
</div>
<div>
<p class="text-sm text-gray-500">Number of Guests</p>
<p class="font-medium text-gray-800">4 people</p>
</div>
</div>
</div>
<div>
<h2 class="text-xl font-semibold text-gray-800 mb-4">Your Tickets</h2>
<div id="ticketList" class="space-y-3">
<!-- Tickets will be added here dynamically -->
</div>
<div class="mt-6">
<button onclick="generateAttendeeCodes()" class="flex items-center bg-purple-600 hover:bg-purple-700 text-white px50 py-2 rounded-lg transition">
<i class="fas fa-qrcode mr-2"></i> Generate Attendee ID Codes
</button>
</div>
</div>
</div>
<!-- Attendance Section - Hidden by default -->
<div id="attendanceSection" class="mt-12 hidden">
<div class="border-b border-gray-200 my-6"></div>
<div class="flex flex-col md:flex-row justify-between items-start md:items-center mb-6">
<h2 class="text-xl font-semibold text-gray-800">Attendance Confirmation</h2>
<div class="mt-2 md:mt-0 text-sm text-gray-600">
<i class="fas fa-info-circle mr-1"></i> Share these codes with your attendees
</div>
</div>
<div id="qrCodesContainer" class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-4">
<!-- QR codes will be added here -->
</div>
<div class="mt-8 bg-blue-50 border border-blue-200 rounded-lg p-4">
<h3 class="font-medium text-blue-800 mb-2"><i class="fas fa-user-check mr-1"></i> Attendance Tracker</h3>
<p class="text-blue-700 text-sm">Enter an attendee code below to confirm attendance:</p>
<div class="flex mt-3">
<input type="text" id="attendeeCodeInput" placeholder="Enter attendee code" class="flex-grow border border-gray-300 rounded-l-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
<button onclick="confirmAttendance()" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-r-lg transition">
<i class="fas fa-check mr-1"></i> Confirm
</button>
</div>
<div id="attendanceResult" class="mt-2 text-sm hidden"></div>
</div>
</div>
<!-- Actions -->
<div class="mt-10 flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<button class="flex-1 bg-white border border-purple-600 text-purple-600 hover:bg-purple-50 px-4 py-3 rounded-lg font-medium transition flex items-center justify-center">
<i class="fas fa-calendar-plus mr-2"></i> Add to Calendar
</button>
<button class="flex-1 bg-white border border-purple-600 text-purple-600 hover:bg-purple-50 px-4 py-3 rounded-lg font-medium transition flex items-center justify-center">
<i class="fas fa-envelope mr-2"></i> Email Details
</button>
<button class="flex-1 bg-purple-600 hover:bg-purple-700 text-white px-4 py-3 rounded-lg font-medium transition flex items-center justify-center">
<i class="fas fa-print mr-2"></i> Print Tickets
</button>
</div>
</div>
</div>
</div>
<script>
// Generate a random booking ID on page load
document.addEventListener('DOMContentLoaded', function() {
// Generate a booking ID (8 alphanumeric characters)
const bookingId = generateUniqueId(8);
document.getElementById('bookingId').querySelector('span').textContent = `#${bookingId}`;
// Store in localStorage
if(!localStorage.getItem('bookingId')) {
localStorage.setItem('bookingId', bookingId);
}
// Add confetti effect to celebrate booking
createConfetti();
// Generate sample tickets
generateTickets();
});
// Generate unique ID
function generateUniqueId(length) {
const chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
let result = '';
for (let i = 0; i < length; i++) {
result += chars.charAt(Math.floor(Math.random() * chars.length));
}
return result;
}
// Copy booking ID to clipboard
function copyBookingId() {
const bookingId = document.getElementById('bookingId').querySelector('span').textContent;
navigator.clipboard.writeText(bookingId.substring(1));
// Show tooltip or change icon to indicate copied
const button = document.getElementById('bookingId').querySelector('button');
const originalIcon = button.innerHTML;
button.innerHTML = '<i class="fas fa-check"></i> Copied!';
setTimeout(() => {
button.innerHTML = originalIcon;
}, 2000);
}
// Generate sample tickets
function generateTickets() {
const ticketTypes = ['General Admission', 'VIP Pass', 'Student Ticket'];
const ticketList = document.getElementById('ticketList');
// Clear existing tickets
ticketList.innerHTML = '';
for (let i = 1; i <= 4; i++) {
const randomType = ticketTypes[Math.floor(Math.random() * ticketTypes.length)];
const ticketHtml = `
<div class="flex items-center justify-between bg-gray-50 p-3 rounded-lg">
<div>
<p class="font-medium text-gray-800">Ticket #${i}</p>
<p class="text-sm text-gray-600">${randomType}</p>
</div>
<span class="bg-gray-200 text-gray-700 text-xs font-medium px-2.5 py-0.5 rounded">Pending ID</span>
</div>
`;
ticketList.insertAdjacentHTML('beforeend', ticketHtml);
}
}
// Generate attendee codes and QR codes
function generateAttendeeCodes() {
const bookingId = localStorage.getItem('bookingId');
const qrCodesContainer = document.getElementById('qrCodesContainer');
// Clear existing QR codes
qrCodesContainer.innerHTML = '';
// Generate 4 unique attendee codes (based on booking ID + attendee number)
for (let i = 1; i <= 4; i++) {
const attendeeCode = `${bookingId}-${generateUniqueId(3)}-${i}`;
const qrCodeHtml = `
<div class="bg-white p-4 rounded-lg shadow-md text-center">
<div class="qr-code bg-white p-2 inline-block mb-2">
<!-- This would be replaced with a real QR code generator in production -->
<div class="grid grid-cols-5 gap-1 w-32 h-32 flex items-center justify-center border-2 border-gray-300">
${Array(25).fill().map((_, idx) =>
`<div class="w-full h-full ${Math.random() > 0.6 ? 'bg-gray-800' : 'bg-white'}"></div>`
).join('')}
</div>
</div>
<p class="font-mono text-sm mt-2 px-2 py-1 bg-gray-100 rounded">${attendeeCode}</p>
<p class="text-xs text-gray-500 mt-1">Ticket #${i}</p>
<button onclick="copyCode('${attendeeCode}')" class="mt-2 text-xs text-purple-600 hover:text-purple-800 transition">
<i class="far fa-copy mr-1"></i> Copy Code
</button>
</div>
`;
qrCodesContainer.insertAdjacentHTML('beforeend', qrCodeHtml);
// Update the ticket list with the generated IDs
const ticketSpans = document.querySelectorAll('#ticketList span');
ticketSpans[i-1].textContent = attendeeCode;
ticketSpans[i-1].className = 'bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded';
// Store attendee codes in localStorage
if(!localStorage.getItem('attendeeCodes')) {
localStorage.setItem('attendeeCodes', JSON.stringify([]));
}
const currentCodes = JSON.parse(localStorage.getItem('attendeeCodes'));
if(!currentCodes.includes(attendeeCode)) {
currentCodes.push(attendeeCode);
localStorage.setItem('attendeeCodes', JSON.stringify(currentCodes));
}
}
// Show the attendance section
document.getElementById('attendanceSection').classList.remove('hidden');
}
// Copy attendee code
function copyCode(code) {
navigator.clipboard.writeText(code);
// Find the button that was clicked and update it temporarily
const buttons = document.querySelectorAll('button[onclick^="copyCode"]');
buttons.forEach(button => {
if (button.getAttribute('onclick').includes(code)) {
const originalHtml = button.innerHTML;
button.innerHTML = '<i class="fas fa-check"></i> Copied!';
setTimeout(() => {
button.innerHTML = originalHtml;
}, 2000);
}
});
}
// Confirm attendance for an attendee
function confirmAttendance() {
const input = document.getElementById('attendeeCodeInput');
const code = input.value.trim();
const resultDiv = document.getElementById('attendanceResult');
// Get stored attendee codes
const attendeeCodes = JSON.parse(localStorage.getItem('attendeeCodes') || '[]');
if (!code) {
resultDiv.textContent = 'Please enter an attendee code';
resultDiv.className = 'mt-2 text-sm text-red-600';
resultDiv.classList.remove('hidden');
return;
}
if (attendeeCodes.includes(code)) {
resultDiv.textContent = `Attendance confirmed for code: ${code}`;
resultDiv.className = 'mt-2 text-sm text-green-600 font-medium';
resultDiv.classList.remove('hidden');
// Mark the QR code as checked in
const qrContainers = document.querySelectorAll('#qrCodesContainer > div');
qrContainers.forEach(container => {
const codeText = container.querySelector('p.font-mono').textContent;
if (codeText === code) {
container.classList.add('checked-in');
}
});
// Clear input
input.value = '';
} else {
resultDiv.textContent = 'Invalid attendee code. Please try again.';
resultDiv.className = 'mt-2 text-sm text-red-600';
resultDiv.classList.remove('hidden');
}
}
// Create confetti effect
function createConfetti() {
const colors = ['#f44336', '#e91e63', '#9c27b0', '#673ab7', '#3f51b5', '#2196f3', '#03a9f4', '#00bcd4', '#009688', '#4CAF50', '#8BC34A', '#CDDC39', '#FFEB3B', '#FFC107', '#FF9800', '#FF5722'];
for (let i = 0; i < 100; i++) {
const confetti = document.createElement('div');
confetti.className = 'confetti';
confetti.style.left = Math.random() * 100 + 'vw';
confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)];
confetti.style.width = Math.random() * 8 + 5 + 'px';
confetti.style.height = Math.random() * 8 + 5 + 'px';
confetti.style.animationDuration = Math.random() * 3 + 2 + 's';
confetti.style.animationDelay = Math.random() * 5 + 's';
document.body.appendChild(confetti);
// Remove confetti after animation
setTimeout(() => {
confetti.remove();
}, 5000);
}
}
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=privateuserh/chandelier-events-booking" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |