a2-projet-web/gestion_students.php
2022-03-22 11:23:13 +01:00

29 lines
857 B
PHP

<!DOCTYPE html>
<?php
session_start();
if (isset($_SESSION["username"])){ ?>
<html lang="fr">
<head>
<?php require "controller/Head.php" ?>
<title>Etudiants - Gestion - CTS</title>
<link rel="stylesheet" type="text/css" href="assets/css/gestion_students.css">
</head>
<body>
<div class="container">
<?php require "controller/Nav_bar.php"?>
<div class="main">
<?php require "controller/Top_bar.php" ?>
<div class="content">
<div class="content_title">Gestion des étudiants</div>
</div>
</div>
</div>
<?php require "controller/Script.php" ?>
<script src="assets/js/gestion_students.js"></script>
</body>
</html>
<?php } else {?>
<script>location.href='/';</script>
<?php } ?>