-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrais.php
More file actions
113 lines (101 loc) · 3.71 KB
/
frais.php
File metadata and controls
113 lines (101 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frais Scolaires - Institut Ngizulu</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- ############## -->
<!-- Navbar -->
<!-- ############## -->
<nav class="navbar">
<div class="nav-brand">École Excellence</div>
<div class="nav-links">
<a href="index.html">Accueil</a>
<a href="frais.html" class="active">Frais Scolaires</a>
<a href="#">Actualités</a>
<a href="#">Contact</a>
<button id="login-btn" class="login-btn">Connexion Parents</button>
</div>
</nav>
<!-- ############## -->
<!-- main-content -->
<!-- ############## -->
<main class="main-content">
<section class="fees-section">
<h1>Gestion des Frais Scolaires</h1>
<div class="student-selector">
<label for="student-select">Sélectionner un enfant :</label>
<select id="student-select">
<option value="1">Marie Dupont - CM2</option>
<option value="2">Thomas Dupont - CE1</option>
</select>
</div>
<div class="fees-table">
<table>
<thead>
<tr>
<th>Description</th>
<th>Montant</th>
<th>Échéance</th>
<th>Statut</th>
<th>Action</th>
</tr>
</thead>
<tbody id="fees-list">
<!-- Les frais seront ajoutés dynamiquement ici -->
</tbody>
</table>
</div>
<div class="summary-card">
<h3>Résumé des Paiements</h3>
<div class="summary-details">
<p>Total des frais : <span id="total-fees">0 €</span></p>
<p>Montant payé : <span id="paid-fees">0 €</span></p>
<p>Reste à payer : <span id="remaining-fees">0 €</span></p>
</div>
</div>
</section>
</main>
<!-- ############## -->
<!-- Chatbot -->
<!-- ############## -->
<div class="chat-widget" id="chat-widget">
<div class="chat-header" onclick="toggleChat()">
<h2>Assistant École</h2>
<button class="minimize-btn" id="minimize-btn">−</button>
</div>
<div class="chat-body" id="chat-body">
<div class="chat-messages" id="chat-messages">
<!-- Les messages seront ajoutés ici dynamiquement -->
</div>
<div class="chat-input">
<input type="text" id="user-input" placeholder="Écrivez votre message...">
<button id="send-button">Envoyer</button>
</div>
</div>
</div>
<!-- ############## -->
<!-- footer -->
<!-- ############## -->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h4>Contact</h4>
<p>Email: makadenis370@gmail.com</p>
<p>Téléphone: +243 997 435 030</p>
</div>
<div class="footer-section">
<h4>Liens Rapides</h4>
<a href="#">À propos</a>
<a href="#">Mentions légales</a>
<a href="#">Plan du site</a>
</div>
</div>
</footer>
<script src="assets/js/script.js"></script>
<script src="assets/js/frais.js"></script>
</body>
</html>