| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Search Parking - Parkingoo</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <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> |
| <style> |
| .search-shadow { |
| box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); |
| } |
| .hover-scale { |
| transition: transform 0.2s ease-in-out; |
| } |
| .hover-scale:hover { |
| transform: scale(1.02); |
| } |
| .rating-bg { |
| background-color: rgba(255, 215, 0, 0.2); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i data-feather="map-pin" class="text-blue-600 h-6 w-6"></i> |
| <span class="ml-2 text-xl font-bold text-blue-600">Parkingoo</span> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> |
| <a href="index.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> |
| <a href="search.html" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Search</a> |
| <a href="about.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">About</a> |
| <a href="contact.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Contact</a> |
| </div> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:items-center"> |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium">Sign In</button> |
| </div> |
| <div class="-mr-2 flex items-center sm:hidden"> |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> |
| <span class="sr-only">Open main menu</span> |
| <i data-feather="menu" class="block h-6 w-6"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="sm:hidden hidden" id="mobile-menu"> |
| <div class="pt-2 pb-3 space-y-1"> |
| <a href="index.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> |
| <a href="search.html" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Search</a> |
| <a href="about.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a> |
| <a href="contact.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Contact</a> |
| <div class="pt-4 pb-3 border-t border-gray-200"> |
| <div class="mt-3 space-y-1"> |
| <a href="#" class="block px-4 py-2 text-base font-medium text-gray-500 hover:text-gray-800 hover:bg-gray-100">Sign in</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="bg-white pt-8 pb-6"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="search-shadow bg-white rounded-lg p-6"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-4"> |
| <div class="col-span-1"> |
| <label for="location" class="block text-sm font-medium text-gray-700">Location</label> |
| <div class="mt-1 relative rounded-md shadow-sm"> |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> |
| <i data-feather="map-pin" class="h-5 w-5 text-gray-400"></i> |
| </div> |
| <input type="text" name="location" id="location" class="focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md" placeholder="Pune, Maharashtra" value="Pune, Maharashtra, India"> |
| </div> |
| </div> |
| <div class="col-span-1"> |
| <label for="start-date" class="block text-sm font-medium text-gray-700">Start Date</label> |
| <div class="mt-1 relative rounded-md shadow-sm"> |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> |
| <i data-feather="calendar" class="h-5 w-5 text-gray-400"></i> |
| </div> |
| <input type="date" name="start-date" id="start-date" class="focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md" value="2025-10-14"> |
| </div> |
| </div> |
| <div class="col-span-1"> |
| <label for="end-date" class="block text-sm font-medium text-gray-700">End Date</label> |
| <div class="mt-1 relative rounded-md shadow-sm"> |
| <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none"> |
| <i data-feather="calendar" class="h-5 w-5 text-gray-400"></i> |
| </div> |
| <input type="date" name="end-date" id="end-date" class="focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md" value="2025-11-12"> |
| </div> |
| </div> |
| <div class="col-span-1 flex items-end"> |
| <button class="bg-blue-600 hover:bg-blue-700 text-white w-full py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Search Parking |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8"> |
| <div class="flex justify-between items-center mb-6"> |
| <h2 class="text-2xl font-bold text-gray-900">Parking Spaces in Pune</h2> |
| <div class="flex items-center"> |
| <span class="text-sm text-gray-500 mr-2">Sort by:</span> |
| <select class="bg-white border border-gray-300 rounded-md shadow-sm pl-3 pr-10 py-2 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500 sm:text-sm"> |
| <option>Recommended</option> |
| <option>Price: Low to High</option> |
| <option>Price: High to Low</option> |
| <option>Rating</option> |
| <option>Distance</option> |
| </select> |
| </div> |
| </div> |
|
|
| <div class="grid grid-cols-1 gap-6"> |
| |
| <div class="bg-white overflow-hidden shadow rounded-lg hover-scale"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-64"> |
| <img class="h-48 w-full object-cover md:h-full md:w-64" src="http://static.photos/parking/640x360/301" alt="Parking Space"> |
| </div> |
| <div class="p-6 flex-1"> |
| <div class="flex justify-between"> |
| <h3 class="text-xl font-medium text-gray-900">Phoenix Marketcity Parking</h3> |
| <div class="flex items-center"> |
| <div class="flex items-center"> |
| <i data-feather="star" class="h-4 w-4 text-yellow-500 fill-current"></i> |
| <span class="ml-1 text-sm font-medium text-gray-900">4.5</span> |
| </div> |
| <span class="mx-2 text-gray-300">|</span> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="h-4 w-4 text-gray-400"></i> |
| <span class="ml-1 text-sm text-gray-500">1.2 km</span> |
| </div> |
| </div> |
| </div> |
| <p class="mt-2 text-sm text-gray-500"> |
| Secure underground parking with CCTV surveillance. 24/7 security personnel available. |
| </p> |
| <div class="mt-4"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>24 hours access</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="shield" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Security cameras</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="car" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Covered parking</span> |
| </div> |
| </div> |
| </div> |
| <div class="p-6 border-l border-gray-200 flex flex-col justify-between"> |
| <div> |
| <p class="text-2xl font-bold text-gray-900">₹150</p> |
| <p class="text-sm text-gray-500">per hour</p> |
| <p class="mt-2 text-sm text-gray-500"><span class="text-green-600">5</span> spots available</p> |
| </div> |
| <button class="mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Book Now |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg hover-scale"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-64"> |
| <img class="h-48 w-full object-cover md:h-full md:w-64" src="http://static.photos/parking/640x360/302" alt="Parking Space"> |
| </div> |
| <div class="p-6 flex-1"> |
| <div class="flex justify-between"> |
| <h3 class="text-xl font-medium text-gray-900">KP Parking Solutions</h3> |
| <div class="flex items-center"> |
| <div class="flex items-center"> |
| <i data-feather="star" class="h-4 w-4 text-yellow-500 fill-current"></i> |
| <span class="ml-1 text-sm font-medium text-gray-900">4.2</span> |
| </div> |
| <span class="mx-2 text-gray-300">|</span> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="h-4 w-4 text-gray-400"></i> |
| <span class="ml-1 text-sm text-gray-500">2.5 km</span> |
| </div> |
| </div> |
| </div> |
| <p class="mt-2 text-sm text-gray-500"> |
| Open air parking with security guard. Well-lit area with easy access to main roads. |
| </p> |
| <div class="mt-4"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>6AM to 11PM</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="shield" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Security guard</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="car" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Open parking</span> |
| </div> |
| </div> |
| </div> |
| <div class="p-6 border-l border-gray-200 flex flex-col justify-between"> |
| <div> |
| <p class="text-2xl font-bold text-gray-900">₹80</p> |
| <p class="text-sm text-gray-500">per hour</p> |
| <p class="mt-2 text-sm text-gray-500"><span class="text-green-600">12</span> spots available</p> |
| </div> |
| <button class="mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Book Now |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg hover-scale"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-64"> |
| <img class="h-48 w-full object-cover md:h-full md:w-64" src="http://static.photos/parking/640x360/303" alt="Parking Space"> |
| </div> |
| <div class="p-6 flex-1"> |
| <div class="flex justify-between"> |
| <h3 class="text-xl font-medium text-gray-900">Seasons Mall Parking</h3> |
| <div class="flex items-center"> |
| <div class="flex items-center"> |
| <i data-feather="star" class="h-4 w-4 text-yellow-500 fill-current"></i> |
| <span class="ml-1 text-sm font-medium text-gray-900">4.7</span> |
| </div> |
| <span class="mx-2 text-gray-300">|</span> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="h-4 w-4 text-gray-400"></i> |
| <span class="ml-1 text-sm text-gray-500">3.1 km</span> |
| </div> |
| </div> |
| </div> |
| <p class="mt-2 text-sm text-gray-500"> |
| Multi-level parking with automated ticket system. Valet parking available at additional cost. |
| </p> |
| <div class="mt-4"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>8AM to 10PM</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="shield" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>CCTV surveillance</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="car" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Multi-level parking</span> |
| </div> |
| </div> |
| </div> |
| <div class="p-6 border-l border-gray-200 flex flex-col justify-between"> |
| <div> |
| <p class="text-2xl font-bold text-gray-900">₹200</p> |
| <p class="text-sm text-gray-500">per hour</p> |
| <p class="mt-2 text-sm text-gray-500"><span class="text-green-600">3</span> spots available</p> |
| </div> |
| <button class="mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Book Now |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white overflow-hidden shadow rounded-lg hover-scale"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-64"> |
| <img class="h-48 w-full object-cover md:h-full md:w-64" src="http://static.photos/parking/640x360/304" alt="Parking Space"> |
| </div> |
| <div class="p-6 flex-1"> |
| <div class="flex justify-between"> |
| <h3 class="text-xl font-medium text-gray-900">Residential Society Parking</h3> |
| <div class="flex items-center"> |
| <div class="flex items-center"> |
| <i data-feather="star" class="h-4 w-4 text-yellow-500 fill-current"></i> |
| <span class="ml-1 text-sm font-medium text-gray-900">4.0</span> |
| </div> |
| <span class="mx-2 text-gray-300">|</span> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="h-4 w-4 text-gray-400"></i> |
| <span class="ml-1 text-sm text-gray-500">1.8 km</span> |
| </div> |
| </div> |
| </div> |
| <p class="mt-2 text-sm text-gray-500"> |
| Secure gated community parking with 24/7 security. Monthly discounts available. |
| </p> |
| <div class="mt-4"> |
| <div class="flex items-center text-sm text-gray-500"> |
| <i data-feather="clock" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>24 hours access</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="shield" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Guarded parking</span> |
| </div> |
| <div class="mt-2 flex items-center text-sm text-gray-500"> |
| <i data-feather="car" class="h-4 w-4 text-gray-400 mr-1"></i> |
| <span>Covered parking</span> |
| </div> |
| </div> |
| </div> |
| <div class="p-6 border-l border-gray-200 flex flex-col justify-between"> |
| <div> |
| <p class="text-2xl font-bold text-gray-900">₹120</p> |
| <p class="text-sm text-gray-500">per hour</p> |
| <p class="mt-2 text-sm text-gray-500"><span class="text-green-600">8</span> spots available</p> |
| </div> |
| <button class="mt-4 bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Book Now |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="mt-8 flex justify-center"> |
| <nav class="relative z-0 inline-flex rounded-md shadow-sm -space-x-px" aria-label="Pagination"> |
| <a href="#" class="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50"> |
| <span class="sr-only">Previous</span> |
| <i data-feather="chevron-left" class="h-5 w-5"></i> |
| </a> |
| <a href="#" aria-current="page" class="z-10 bg-blue-50 border-blue-500 text-blue-600 relative inline-flex items-center px-4 py-2 border text-sm font-medium"> |
| 1 |
| </a> |
| <a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium"> |
| 2 |
| </a> |
| <a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium"> |
| 3 |
| </a> |
| <span class="relative inline-flex items-center px-4 py-2 border border-gray-300 bg-white text-sm font-medium text-gray-700"> |
| ... |
| </span> |
| <a href="#" class="bg-white border-gray-300 text-gray-500 hover:bg-gray-50 relative inline-flex items-center px-4 py-2 border text-sm font-medium"> |
| 8 |
| </a> |
| <a href="#" class="relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50"> |
| <span class="sr-only">Next</span> |
| <i data-feather="chevron-right" class="h-5 w-5"></i> |
| </a> |
| </nav> |
| </div> |
| </div> |
|
|
| |
| <footer class="bg-gray-800"> |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3> |
| <ul class="mt-4 space-y-4"> |
| <li><a href="about.html" class="text-base text-gray-300 hover:text-white">About</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li> |
| <li><a href="contact.html" class="text-base text-gray-300 hover:text-white">Contact</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Support</h3> |
| <ul class="mt-4 space-y-4"> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Help Center</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Safety</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Cancellation options</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Report issue</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3> |
| <ul class="mt-4 space-y-4"> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie policy</a></li> |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">GDPR</a></li> |
| </ul> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect with us</h3> |
| <div class="mt-4 flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i data-feather="facebook" class="h-6 w-6"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i data-feather="twitter" class="h-6 w-6"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i data-feather="instagram" class="h-6 w-6"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i data-feather="linkedin" class="h-6 w-6"></i> |
| </a> |
| </div> |
| <div class="mt-6"> |
| <p class="text-sm text-gray-400"> |
| Subscribe to our newsletter |
| </p> |
| <div class="mt-2 flex"> |
| <input type="email" placeholder="Your email" class="px-3 py-2 border border-gray-600 bg-gray-700 rounded-l text-white text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 flex-grow"> |
| <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-r text-sm font-medium"> |
| Subscribe |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="mt-12 border-t border-gray-700 pt-8"> |
| <p class="text-base text-gray-400 text-center"> |
| © 2023 Parkingoo. All rights reserved. |
| </p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.querySelector('[aria-controls="mobile-menu"]').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| if (menu.classList.contains('hidden')) { |
| menu.classList.remove('hidden'); |
| menu.classList.add('block'); |
| } else { |
| menu.classList.remove('block'); |
| menu.classList.add('hidden'); |
| } |
| }); |
| |
| |
| feather.replace(); |
| </script> |
| </body> |
| </html> |
|
|