HTMLify
teachers.html
Views: 40 | Author: karbonsites
1 2 3 4 5 6 | <!DOCTYPE html><html lang="fr"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Gestion des Enseignants - EduManage Pro</title><link rel="stylesheet" href="style.css"><script src="script.js" defer></script></head><body><header class="navbar"><div class="logo">EduManage<span>Pro</span></div><nav><ul><li><a href="index.html">Accueil</a></li><li><a href="students.html">Élèves</a></li><li><a href="teachers.html" class="active">Enseignants</a></li><li><a href="grades.html">Notes</a></li><li><a href="fees.html">Frais Scolaires</a></li><li><a href="reports.html">Rapports</a></li><li><a href="idcard.html">Carte d'Élève</a></li><li><a href="staffcard.html">Carte Personnel</a></li><li><a href="photocapture.html">Capturer Photo</a></li></ul></nav><div class="user-profile"><img src="https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=100&q=80" alt="Avatar"><span>Admin</span><button id="logoutBtn" class="btn btn-secondary" style="padding: 0.25rem 0.75rem; font-size: 0.8rem; margin-left: 0.5rem;">Déconnexion</button></div></header><main class="container"><section class="page-header"><h1>Annuaire des Enseignants</h1><button class="btn" id="openTeacherModal">+ Nouvel Enseignant</button></section><section class="table-container"><table class="data-table"><thead><tr><th>Photo</th><th>Nom</th><th>Matière</th><th>Email</th><th>Téléphone</th><th>Date d'embauche</th><th>Statut</th><th>Actions</th></tr></thead><tbody id="teachers-tbody"></tbody></table></section></main><div class="modal-overlay" id="teacherModal"><div class="modal"><h2 id="teacherModalTitle">Ajouter un Nouvel Enseignant</h2><form id="teacherForm"><input type="hidden" id="teacherEditIndex" value="-1"><div class="form-group"><label for="teacherName">Nom complet</label><input type="text" id="teacherName" required placeholder="Ex: Marc Vacher"></div><div class="form-group"><label for="teacherSubject">Matière</label><input type="text" id="teacherSubject" required placeholder="Ex: Mathématiques"></div><div class="form-group"><label for="teacherEmail">Email</label><input type="email" id="teacherEmail" required placeholder="Ex: m.vacher@school.com"></div><div class="form-group"><label for="teacherPhone">Téléphone</label><input type="tel" id="teacherPhone" required placeholder="Ex: +33 6 12 34 56 78"></div><div class="form-group"><label for="teacherDate">Date d'embauche</label><input type="date" id="teacherDate" required></div><div class="form-group"><label for="teacherPhotoUrl">URL de la photo</label><input type="text" id="teacherPhotoUrl" placeholder="https://..."></div><div class="form-actions"><button type="button" class="btn btn-secondary" id="closeTeacherModal">Annuler</button><button type="submit" class="btn">Enregistrer</button></div></form></div></div> <a href="https://karbonsites.space/home" target="_blank" id="karbon-promo-banner"> <span>✨</span> <div>Built with <b>Karbon Sites</b></div> </a> </body></html> |