undefined / patient-details.html
kalhdrawi's picture
قم ببناء موقع احترافي لادارة المستشفى متكون من 20 صفحة
96637b1 verified
raw
history blame
10.2 kB
<!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">
<!-- Navigation -->
<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-gray-600 hover:text-blue-600">الأطباء</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">
<!-- Patient Header -->
<div class="bg-white rounded-lg shadow-md p-6 mb-6">
<div class="flex justify-between items-start">
<div class="flex items-center space-x-reverse space-x-4">
<img src="http://static.photos/people/200x200/10" alt="Patient" class="w-24 h-24 rounded-full">
<div>
<h1 class="text-2xl font-bold text-gray-800">أحمد محمد علي</h1>
<p class="text-gray-600">رقم الملف: #1001</p>
<div class="flex items-center space-x-reverse space-x-4 mt-2 text-sm text-gray-600">
<span>45 سنة</span>
<span>ذكر</span>
<span>O+</span>
</div>
</div>
</div>
<div class="flex space-x-reverse space-x-2">
<button class="px-4 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 flex items-center space-x-reverse space-x-2">
<i data-feather="edit" class="w-4 h-4"></i>
<span>تعديل</span>
</button>
<a href="appointment-scheduling.html" class="px-4 py-2 bg-green-600 text-white rounded-lg hover:bg-green-700 flex items-center space-x-reverse space-x-2">
<i data-feather="calendar-plus" class="w-4 h-4"></i>
<span>حجز موعد</span>
</a>
</div>
</div>
</div>
<!-- Patient Information Tabs -->
<div class="bg-white rounded-lg shadow-md">
<div class="border-b">
<div class="flex space-x-reverse space-x-8 px-6">
<button class="py-4 border-b-2 border-blue-600 text-blue-600 font-medium">المعلومات الشخصية</button>
<button class="py-4 text-gray-600 hover:text-blue-600">التاريخ الطبي</button>
<button class="py-4 text-gray-600 hover:text-blue-600">المواعيد</button>
<button class="py-4 text-gray-600 hover:text-blue-600">الفواتير</button>
<button class="py-4 text-gray-600 hover:text-blue-600">الملفات</button>
</div>
</div>
<!-- Personal Information Tab -->
<div class="p-6">
<h2 class="text-xl font-semibold text-gray-800 mb-4">المعلومات الشخصية</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-lg font-medium text-gray-700 mb-3">معلومات أساسية</h3>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">تاريخ الميلاد:</span>
<span>15/05/1979</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">الجنسية:</span>
<span>سعودي</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">الحالة الاجتماعية:</span>
<span>متزوج</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">فصيلة الدم:</span>
<span>O+</span>
</div>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-700 mb-3">معلومات الاتصال</h3>
<div class="space-y-2">
<div class="flex justify-between">
<span class="text-gray-600">الهاتف:</span>
<span>01234567890</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">البريد الإلكتروني:</span>
<span>ahmed@email.com</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">العنوان:</span>
<span>الرياض - حي النخيل</span>
</div>
<div class="flex justify-between">
<span class="text-gray-600">العمل:</span>
<span>مهندس</span>
</div>
</div>
</div>
</div>
<div class="mt-6">
<h3 class="text-lg font-medium text-gray-700 mb-3">المعلومات الطبية</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h4 class="font-medium text-gray-600 mb-2">أمراض مزمنة:</h4>
<ul class="list-disc list-inside text-gray-600">
<li>ضغط الدم المرتفع</li>
<li>داء السكري من النوع 2</li>
</ul>
</div>
<div>
<h4 class="font-medium text-gray-600 mb-2">حساسية دوائية:</h4>
<ul class="list-disc list-inside text-gray-600">
<li>البنسلين</li>
<li>الأسبرين</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Recent Visits -->
<div class="bg-white rounded-lg shadow-md p-6 mt-6">
<h2 class="text-xl font-semibold text-gray-800 mb-4">الزيارات الأخيرة</h2>
<div class="space-y-4">
<div class="border rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800">زيارة لد. أحمد محمد</h4>
<p class="text-sm text-gray-600">قسم القلب - 20/11/2024</p>
<p class="text-sm text-gray-600 mt-2">فحص دوري - ضغط الدم مستقر</p>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">مكتملة</span>
</div>
</div>
<div class="border rounded-lg p-4">
<div class="flex justify-between items-start">
<div>
<h4 class="font-semibold text-gray-800">زيارة لد. سارة أحمد</h4>
<p class="text-sm text-gray-600">قسم الباطنية - 15/11/2024</p>
<p class="text-sm text-gray-600 mt-2">متابعة داء السكري</p>
</div>
<span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">مكتملة</span>
</div>
</div>
</div>
</div>
</div>
<script>
feather.replace();
anime({
targets: '.bg-white',
translateY: [20, 0],
opacity: [0, 1],
delay: anime.stagger(100),
duration: 600,
easing: 'easeOutQuad'
});
</script>
</body>
</html>