131 lines
4.4 KiB
PHP
Executable File
131 lines
4.4 KiB
PHP
Executable File
<?php session_start();
|
|
require('autoloader.php');
|
|
if(!Authentification::checkUser(0)){
|
|
header("Location: http://".$_SERVER['HTTP_HOST']."/index.php");
|
|
die();
|
|
};
|
|
// formattage $_GET['type']
|
|
$answerType = (isset($_GET['type'])) ? $_GET['type'] : null;
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Consultations</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'/>
|
|
<link rel='stylesheet' href='css/responsive.css'/>
|
|
|
|
<script type='text/javascript' src='js/lib/API.js'></script>
|
|
<script type='text/javascript' src='js/lib/adjust.js'></script>
|
|
<script type='text/javascript' src='js/input-checker.js'></script>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- BARRE DE NOTIFICATIONS -->
|
|
<div id='NOTIFBAR'>
|
|
<div></div>
|
|
<div>
|
|
<h3>Oups!</h3>
|
|
<p>Certains champs sont incorrects. Veuillez réessayer.</p>
|
|
<input type='button' value='Fermer'>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- WRAPPER DE LA PAGE -->
|
|
<div id='WRAPPER'>
|
|
|
|
<!-- MENU DE LA PAGE -->
|
|
<nav id='MENU'>
|
|
<a href='Dashboard.php' id='ICON'></a>
|
|
<div>
|
|
<a href='Dashboard.php' id='dashboard'>Tableau de bord</a>
|
|
<a href='Consultations.php' id='consultations' class='active'>Consultations</a>
|
|
<a href='Medecins.php' id='medecin'>Gestion des médecins</a>
|
|
<a href='Patients.php' id='patient'>Gestion des patients</a>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
|
|
<!-- CONTAINER DE LA PAGE -->
|
|
<section id='CONTAINER'>
|
|
|
|
<!-- FIL D'ARIANE -->
|
|
<div id='BREADCRUMB'><a href='Dashboard.php'>Accueil</a> <a href='Consultations.php'>Consultations</a></a> </div>
|
|
|
|
<?php if( $answerType != null ){
|
|
|
|
echo '<span>';
|
|
switch($answerType){
|
|
case 'creation': echo 'Patient créé.'; break;
|
|
case 'error': echo 'Une erreur est survenue.'; break;
|
|
default: echo 'rien à déclarer ? Non!'; break;
|
|
}
|
|
echo '</span>';
|
|
|
|
}
|
|
/*************************************/
|
|
/* SAISIR UN RENDEZ-VOUS */
|
|
/*************************************/ ?>
|
|
<article data-title="Saisir un rendez-vous">
|
|
<form method='POST' action='managers/'>
|
|
<div>
|
|
<select id='newRDVPatient' name='id_patient'>
|
|
<option value='*'>Patient:</option>
|
|
<?php
|
|
foreach(PatientRepo::getAll() as $PATIENT)
|
|
echo "<option value='".$PATIENT['Id']."' data-medecin='".$PATIENT['MedecinTraitant']."'>".$PATIENT['Nom']." ".$PATIENT['Prenom']."</option>";
|
|
?>
|
|
</select>
|
|
</div><div>
|
|
<select id='newRDVMedecin' name='id_medecin'>
|
|
<option value='*'>Medecins:</option>
|
|
<?php
|
|
foreach(MedecinRepo::getAll() as $MEDECIN)
|
|
echo "<option value='".$MEDECIN['Id']."'>".$MEDECIN['Nom']." ".$MEDECIN['Prenom']."</option>";
|
|
?>
|
|
</select><span class='associated'>Médecin traitant du patient.</span>
|
|
</div><br>
|
|
|
|
<input type='text' id='inDate' name='date' placeholder='jj/mm/aaaa' required><span class='info'>Date de la consultation</span><br>
|
|
<input type='text' id='inHeure' name='heure' placeholder='HH:MM' required><span class='info'>Heure de la consultation</span><br>
|
|
<input type='text' id='inDuree' name='duree' placeholder='minutes' required><span class='info'>Durée de la consultation</span><br>
|
|
<br>
|
|
|
|
<input type='hidden' name='command' value='RDV:add'>
|
|
<input type='submit' id='sbCreer' value='Enregistrer la consultation'>
|
|
</form>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
<?php/********************************/
|
|
/* CONSULTER LES RENDEZ-VOUS */
|
|
/*************************************/ ?>
|
|
<article data-title="Numéro de sécurité sociale">
|
|
<div>
|
|
<input type='radio' name='filter_c' id='tousRDV' checked><label for='tousRDV'>Toutes les consultations</label><br>
|
|
<input type='radio' name='filter_c' id='pastRDV'><label for='pastRDV'>Consultations passées</label><br>
|
|
<input type='radio' name='filter_c' id='fturRDV'><label for='fturRDV'>Consultations à venir</label><br>
|
|
<input type='submit' value='Rechercher'>
|
|
|
|
<input type='text' id='inSecu' placeholder='1 99 19 99 999 999 99'><span class='invalid'>Clé de contrôle invalide.</span>
|
|
</div>
|
|
</article>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
<script type='text/javascript' src='js/consultations.js'></script>
|
|
</body>
|
|
</html>
|