-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
29 lines (23 loc) · 999 Bytes
/
menu.html
File metadata and controls
29 lines (23 loc) · 999 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css" type="text/css">
<title>Menu</title>
</head>
<body id="menu">
<h2>Menu</h2><hr><br>
<h2>Élève</h2>
<a href="ajout_eleve.html" target="contenu">Ajouter</a> <br>
<a href="inscription_eleve.php" target="contenu">Inscrire</a> <br>
<a href="consultation_eleve.php" target="contenu">Consulter</a> <br>
<a href="visualisation_calendrier_eleve.php" target="contenu">Calendrier</a> <br><br><hr><br>
<h2>Séance</h2>
<a href="ajout_seance.php" target="contenu">Ajouter</a> <br>
<a href="validation_seance.php" target="contenu">Noter</a> <br>
<a href="desinscription_seance.php" target="contenu">Désinscrire</a> <br><br><hr><br>
<h2>Thème</h2>
<a href="ajout_theme.html" target="contenu">Ajouter</a> <br>
<a href="suppression_theme.php" target="contenu">Supprimer</a> <br>
</body>
</html>