52 lines
1.2 KiB
PHP
Executable File
52 lines
1.2 KiB
PHP
Executable File
<?php session_start();
|
|
require('autoloader.php');
|
|
if(!Authentification::checkUser(0)){
|
|
header("Location: http://".$_SERVER['HTTP_HOST']."/index.php");
|
|
die();
|
|
};?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tableau de bord</title>
|
|
|
|
<meta charset='utf-8'/>
|
|
<meta name='description' value='Site de test'/>
|
|
<meta name='author' value='{xdrm} & SeekDaSky'/>
|
|
|
|
<link rel='stylesheet' href='css/animations.css'/>
|
|
<link rel='stylesheet' href='css/global.css'/>
|
|
|
|
<script type='text/javascript' src='js/adjust.js'></script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- WRAPPER DE LA PAGE -->
|
|
<div id='WRAPPER'>
|
|
|
|
<!-- MENU DE LA PAGE -->
|
|
<nav id='MENU'>
|
|
<a href='Dashboard.php' id='ICON'></a>
|
|
<a href='Dashboard.php' id='dashboard' class='active'>Tableau de bord</a>
|
|
<a href='Consultations.php' id='consultations'>Consultations</a>
|
|
<a href='Medecins.php' id='medecin'>Gestion des médecins</a>
|
|
<a href='Patients.php' id='patient'>Gestion des patients</a>
|
|
</nav>
|
|
|
|
|
|
|
|
<!-- CONTAINER DE LA PAGE -->
|
|
<section id='CONTAINER'>
|
|
|
|
<!-- FIL D'ARIANE -->
|
|
<div id='BREADCRUMB'><a href='Dashboard.php'>Accueil</a></div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|