| <!DOCTYPE html> |
| <html lang="en" class="h-full"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Book Your Queue | QueueMaster Pro</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| </head> |
| <body class="bg-gray-50 min-h-full flex flex-col"> |
| <custom-navbar></custom-navbar> |
|
|
| <main class="flex-grow container mx-auto px-4 py-8"> |
| <div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6 md:p-8"> |
| <h1 class="text-3xl font-bold text-gray-800 mb-6">Book Your Queue</h1> |
| |
| <form id="bookingForm" class="space-y-6"> |
| <div> |
| <label for="service" class="block text-sm font-medium text-gray-700 mb-1">Service Type</label> |
| <select id="service" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"> |
| <option value="">Select a service</option> |
| <option value="doctor">Doctor Appointment</option> |
| <option value="bank">Bank Services</option> |
| <option value="government">Government Office</option> |
| <option value="retail">Retail Service</option> |
| <option value="other">Other</option> |
| </select> |
| </div> |
|
|
| <div> |
| <label for="location" class="block text-sm font-medium text-gray-700 mb-1">Location</label> |
| <select id="location" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"> |
| <option value="">Select a location</option> |
| <option value="main">Main Branch</option> |
| <option value="north">North Branch</option> |
| <option value="south">South Branch</option> |
| <option value="east">East Branch</option> |
| <option value="west">West Branch</option> |
| </select> |
| </div> |
|
|
| <div> |
| <label for="date" class="block text-sm font-medium text-gray-700 mb-1">Date</label> |
| <input type="date" id="date" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"> |
| </div> |
|
|
| <div> |
| <label for="time" class="block text-sm font-medium text-gray-700 mb-1">Time Slot</label> |
| <select id="time" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus: |
| </body> |
| </html> |