-
Notifications
You must be signed in to change notification settings - Fork 0
/
liste.html
executable file
·125 lines (109 loc) · 4.59 KB
/
liste.html
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
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="css/listAddStudent.css">
<link rel="stylesheet" href="css/liste.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="fontawesome/css/all.css">
<title>Liste des étudiants</title>
</head>
<body>
<div class="container">
<div class="naviguation">
<div class="boiteAdmin">
<div class="photoAdmin"></div>
<p>ADMIN</p>
</div>
<ul class="navul">
<li>
<a href="dashboard.html">
<span class="icone"><i class="fa fa-home" aria-hidden="true"></i></span>
<span class="titre">Accueil</span>
</a>
</li>
<li class="dropdown">
<a href="#">
<span class="icone"><i class="fa fa-users" aria-hidden="true"></i></span>
<span class="titre">Espace Etudiants</span>
</a>
<ul class="sousMenu">
<li>
<a href="liste.html">
<span class="icone"><i class="fa fa-list-ul" aria-hidden="true"></i></span>
<span class="titre">Liste</span>
</a>
</li>
<li>
<a href="resultat.html">
<span class="icone"><i class="fa fa-check-double" aria-hidden="true"></i></span>
<span class="titre">Résultats</span>
</a>
</li>
</ul>
</li>
<li>
<a href="parametres.html">
<span class="icone"><i class="fa fa-cogs" aria-hidden="true"></i></span>
<span class="titre">Paramètres</span>
</a>
</li>
<li>
<a href="index.html">
<span class="icone"><i class="fa fa-sign-out-alt" aria-hidden="true"></i></span>
<span class="titre">Déconnexion</span>
</a>
</li>
</ul>
</div>
<div class="main">
<div class="topbar">
<div class="toggle" onclick="toggleMenu()"><i class="fa fa-bars"></i></div>
<div class="search">
<label for="search">
<input type="search" name="search" id="search" placeholder="faire une recherche...">
<i class="fa fa-search" aria-hidden="true"></i>
</label>
</div>
</div>
<div class="contenus">
<div class="title">
<h1 >LISTE DES ETUDIANTS</h1>
<label for="search">
<input type="search" name="recherche" id="recherche" placeholder="faire une recherche...">
<i class="fa fa-search" aria-hidden="true"></i>
</label>
</div>
<div class="tableContainer">
<table>
<thead>
<tr>
<td>Photo</td>
<td>Matricule</td>
<td>Nom et prénoms</td>
<td>Née le</td>
<td>Contact</td>
<td>Email</td>
<td>Spécialité</td>
<td>Scolarité</td>
<td></td>
</tr>
</thead>
<tbody>
<!-- Affichage des étudiants inscrit -->
</tbody>
</table>
</div>
<p id="error"></p>
<!-- Affichage des informations de l'étudiant selectionner -->
<a class="add" href="listAddStudent.html">Ajouter nouvel étudiant</a>
</div>
</div>
</div>
</body>
<script src="script/liste.js"></script>
<script src="script/toggle.js"></script>
</html>