| <!DOCTYPE html> |
| <html lang="ar" dir="rtl"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>إدارة الأطباء - نظام إدارة المستشفى</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://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap'); |
| body { font-family: 'Tajawal', sans-serif; } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="bg-white shadow-lg sticky top-0 z-50"> |
| <div class="max-w-7xl mx-auto px-4"> |
| <div class="flex justify-between items-center py-4"> |
| <div class="flex items-center space-x-reverse space-x-2"> |
| <i data-feather="activity" class="w-8 h-8 text-blue-600"></i> |
| <span class="text-xl font-bold text-gray-800">نظام إدارة المستشفى</span> |
| </div> |
| <div class="hidden md:flex space-x-reverse space-x-6"> |
| <a href="index.html" class="text-gray-600 hover:text-blue-600">الرئيسية</a> |
| <a href="patients.html" class="text-gray-600 hover:text-blue-600">المرضى</a> |
| <a href="doctors.html" class="text-blue-600 font-medium">الأطباء</a> |
| <a href="appointments.html" class="text-gray-600 hover:text-blue-600">المواعيد</a> |
| <a href="departments.html" class="text-gray-600 hover:text-blue-600">الأقسام</a> |
| <a href="emergency.html" class="text-gray-600 hover:text-blue-600">الطوارئ</a> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| <div class="max-w-7xl mx-auto px-4 py-8"> |
| <div class="flex justify-between items-center mb-8"> |
| <h1 class="text-3xl font-bold text-gray-800">إدارة الأطباء</h1> |
| <a href="doctor-registration.html" class="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 flex items-center space-x-reverse space-x-2"> |
| <i data-feather="user-plus" class="w-5 h-5"></i> |
| <span>إضافة طبيب جديد</span> |
| </a> |
| </div> |
|
|
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-xl transition-shadow"> |
| <div class="p-6"> |
| <div class="flex items-center space-x-reverse space-x-4 mb-4"> |
| <img src="http://static.photos/people/200x200/1" alt="Doctor" class="w-20 h-20 rounded-full"> |
| <div> |
| <h3 class="text-lg font-semibold text-gray-800">د. أحمد محمد</h3> |
| <p class="text-sm text-gray-600">استشاري قلب</p> |
| <div class="flex items-center mt-1"> |
| <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i> |
| <span class="text-sm text-gray-600 mr-1">4.8</span> |
| </div> |
| </div> |
| </div> |
| <div class="space-y-2 text-sm text-gray-600"> |
| <div class="flex items-center"> |
| <i data-feather="briefcase" class="w-4 h-4 ml-2"></i> |
| <span>15 سنة خبرة</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="w-4 h-4 ml-2"></i> |
| <span>الطابق الثاني - غرفة 201</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="calendar" class="w-4 h-4 ml-2"></i> |
| <span>الأحد - الخميس</span> |
| </div> |
| </div> |
| <div class="mt-4 flex space-x-reverse space-x-2"> |
| <a href="doctor-details.html" class="flex-1 bg-blue-600 text-white text-center py-2 rounded hover:bg-blue-700">الملف</a> |
| <a href="appointment-scheduling.html" class="flex-1 bg-green-600 text-white text-center py-2 rounded hover:bg-green-700">حجز</a> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-xl transition-shadow"> |
| <div class="p-6"> |
| <div class="flex items-center space-x-reverse space-x-4 mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="Doctor" class="w-20 h-20 rounded-full"> |
| <div> |
| <h3 class="text-lg font-semibold text-gray-800">د. سارة أحمد</h3> |
| <p class="text-sm text-gray-600">استشارية نساء وتوليد</p> |
| <div class="flex items-center mt-1"> |
| <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i> |
| <span class="text-sm text-gray-600 mr-1">4.9</span> |
| </div> |
| </div> |
| </div> |
| <div class="space-y-2 text-sm text-gray-600"> |
| <div class="flex items-center"> |
| <i data-feather="briefcase" class="w-4 h-4 ml-2"></i> |
| <span>12 سنة خبرة</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="w-4 h-4 ml-2"></i> |
| <span>الطابق الثالث - غرفة 305</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="calendar" class="w-4 h-4 ml-2"></i> |
| <span>الأحد - السبت</span> |
| </div> |
| </div> |
| <div class="mt-4 flex space-x-reverse space-x-2"> |
| <a href="doctor-details.html" class="flex-1 bg-blue-600 text-white text-center py-2 rounded hover:bg-blue-700">الملف</a> |
| <a href="appointment-scheduling.html" class="flex-1 bg-green-600 text-white text-center py-2 rounded hover:bg-green-700">حجز</a> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-xl transition-shadow"> |
| <div class="p-6"> |
| <div class="flex items-center space-x-reverse space-x-4 mb-4"> |
| <img src="http://static.photos/people/200x200/3" alt="Doctor" class="w-20 h-20 rounded-full"> |
| <div> |
| <h3 class="text-lg font-semibold text-gray-800">د. محمود علي</h3> |
| <p class="text-sm text-gray-600">استشاري أطفال</p> |
| <div class="flex items-center mt-1"> |
| <i data-feather="star" class="w-4 h-4 text-yellow-400 fill-current"></i> |
| <span class="text-sm text-gray-600 mr-1">4.7</span> |
| </div> |
| </div> |
| </div> |
| <div class="space-y-2 text-sm text-gray-600"> |
| <div class="flex items-center"> |
| <i data-feather="briefcase" class="w-4 h-4 ml-2"></i> |
| <span>10 سنة خبرة</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="w-4 h-4 ml-2"></i> |
| <span>الطابق الأول - غرفة 105</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="calendar" class="w-4 h-4 ml-2"></i> |
| <span>السبت - الأربعاء</span> |
| </div> |
| </div> |
| <div class="mt-4 flex space-x-reverse space-x-2"> |
| <a href="doctor-details.html" class="flex-1 bg-blue-600 text-white text-center py-2 rounded hover:bg-blue-700">الملف</a> |
| <a href="appointment-scheduling.html" class="flex-1 bg-green-600 text-white text-center py-2 rounded hover:bg-green-700">حجز</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <script> |
| feather.replace(); |
| anime({ |
| targets: '.bg-white', |
| scale: [0.9, 1], |
| opacity: [0, 1], |
| delay: anime.stagger(100), |
| duration: 600, |
| easing: 'easeOutQuad' |
| }); |
| </script> |
| </body> |
| </html> |