| <!DOCTYPE html> |
| <html lang="tr"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>EduTrack Pro - Yönetici Paneli</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="components/navbar.js"></script> |
| </head> |
| <body class="bg-gray-50 min-h-screen flex flex-col"> |
| <custom-navbar></custom-navbar> |
| |
| <main class="flex-grow container mx-auto px-4 py-8"> |
| <div class="mb-8"> |
| <h1 class="text-3xl font-bold text-primary">Yönetici Paneli</h1> |
| <p class="text-gray-600">Dershane yönetim sistemini kontrol edin</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in"> |
| <div class="p-6"> |
| <div class="flex items-center justify-between mb-4"> |
| <h2 class="text-xl font-semibold text-gray-800">Öğretmenler</h2> |
| <span class="bg-primary text-white px-3 py-1 rounded-full text-sm font-medium">24</span> |
| </div> |
| <p class="text-gray-600 mb-4">Sistemde kayıtlı öğretmenler</p> |
| <div class="flex justify-between"> |
| <a href="teachers.html" class="text-primary font-medium hover:underline">Tümünü Gör</a> |
| <button class="bg-primary text-white px-3 py-1 rounded-md text-sm hover:bg-primary-600 transition"> |
| <i data-feather="plus" class="w-4 h-4 inline mr-1"></i> Yeni Ekle |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in" style="animation-delay: 0.1s;"> |
| <div class="p-6"> |
| <div class="flex items-center justify-between mb-4"> |
| <h2 class="text-xl font-semibold text-gray-800">Öğrenciler</h2> |
| <span class="bg-secondary text-white px-3 py-1 rounded-full text-sm font-medium">187</span> |
| </div> |
| <p class="text-gray-600 mb-4">Sistemde kayıtlı öğrenciler</p> |
| <div class="flex justify-between"> |
| <a href="students.html" class="text-primary font-medium hover:underline">Tümünü Gör</a> |
| <button class="bg-primary text-white px-3 py-1 rounded-md text-sm hover:bg-primary-600 transition"> |
| <i data-feather="plus" class="w-4 h-4 inline mr-1"></i> Yeni Ekle |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in" style="animation-delay: 0.2s;"> |
| <div class="p-6"> |
| <div class="flex items-center justify-between mb-4"> |
| <h2 class="text-xl font-semibold text-gray-800">Dersler</h2> |
| <span class="bg-purple-500 text-white px-3 py-1 rounded-full text-sm font-medium">12</span> |
| </div> |
| <p class="text-gray-600 mb-4">Sistemde tanımlı dersler</p> |
| <div class="flex justify-between"> |
| <a href="classes.html" class="text-primary font-medium hover:underline">Tümünü Gör</a> |
| <button class="bg-primary text-white px-3 py-1 rounded-md text-sm hover:bg-primary-600 transition"> |
| <i data-feather="plus" class="w-4 h-4 inline mr-1"></i> Yeni Ekle |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in" style="animation-delay: 0.3s;"> |
| <div class="p-6"> |
| <h2 class="text-xl font-semibold text-gray-800 mb-4">Bugünkü Yoklama</h2> |
| <div class="grid grid-cols-3 gap-4 text-center"> |
| <div class="p-3 rounded-lg status-present"> |
| <div class="text-2xl font-bold">142</div> |
| <div class="text-sm">Var</div> |
| </div> |
| <div class="p-3 rounded-lg status-absent"> |
| <div class="text-2xl font-bold">15</div> |
| <div class="text-sm">Yok</div> |
| </div> |
| <div class="p-3 rounded-lg status-excused"> |
| <div class="text-2xl font-bold">7</div> |
| <div class="text-sm">Raporlu</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in" style="animation-delay: 0.4s;"> |
| <div class="p-6"> |
| <h2 class="text-xl font-semibold text-gray-800 mb-4">Son Aktivite</h2> |
| <div class="space-y-4"> |
| <div class="flex items-start"> |
| <div class="bg-blue-100 p-2 rounded-full mr-3"> |
| <i data-feather="user-plus" class="text-blue-500 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="text-sm font-medium">Yeni öğretmen eklendi</p> |
| <p class="text-xs text-gray-500">Ahmet Yılmaz - 10 dakika önce</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-2 rounded-full mr-3"> |
| <i data-feather="book" class="text-green-500 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="text-sm font-medium">Yeni ders oluşturuldu</p> |
| <p class="text-xs text-gray-500">10. Sınıf Matematik - 1 saat önce</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-yellow-100 p-2 rounded-full mr-3"> |
| <i data-feather="alert-triangle" class="text-yellow-500 w-4 h-4"></i> |
| </div> |
| <div> |
| <p class="text-sm font-medium">Yoklama uyarısı</p> |
| <p class="text-xs text-gray-500">3 öğrenci devamsız - Bugün</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="bg-white rounded-xl shadow-md overflow-hidden fade-in" style="animation-delay: 0.5s;"> |
| <div class="p-6"> |
| <h2 class="text-xl font-semibold text-gray-800 mb-4">Hızlı Eylemler</h2> |
| <div class="grid grid-cols-2 gap-3"> |
| <a href="attendance.html" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-lg text-center transition"> |
| <i data-feather="check-square" class="w-5 h-5 mx-auto text-primary"></i> |
| <p class="text-sm mt-1">Yoklama Al</p> |
| </a> |
| <a href="messages.html" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-lg text-center transition"> |
| <i data-feather="message-square" class="w-5 h-5 mx-auto text-primary"></i> |
| <p class="text-sm mt-1">Mesaj Gönder</p> |
| </a> |
| <a href="reports.html" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-lg text-center transition"> |
| <i data-feather="file-text" class="w-5 h-5 mx-auto text-primary"></i> |
| <p class="text-sm mt-1">Rapor Al</p> |
| </a> |
| <a href="settings.html" class="bg-gray-100 hover:bg-gray-200 p-3 rounded-lg text-center transition"> |
| <i data-feather="settings" class="w-5 h-5 mx-auto text-primary"></i> |
| <p class="text-sm mt-1">Ayarlar</p> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </main> |
| |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |