56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
// ****************************************'
|
|
// Le CASTEL-BTS SIO/ PROJET FORMATION '
|
|
// Programme: c_connexion.php '
|
|
// Objet : authentification '
|
|
// Client : Bts SIO1 '
|
|
// Version : 1.0 '
|
|
// Date : 26/03/2020 à 23h17 '
|
|
// Auteur : pascal-blain@wanadoo.fr '
|
|
//*****************************************'
|
|
|
|
if(!isset($_REQUEST['action'])){$_REQUEST['action'] = 'demandeConnexion';}
|
|
|
|
$action = $_REQUEST['action'];
|
|
switch($action){
|
|
case 'demandeConnexion':{
|
|
session_unset();
|
|
unset($choix);
|
|
$formulaire = "frmIdentification";
|
|
$champ = "login";
|
|
include("vues/v_entete.php");
|
|
include("vues/v_connexion.php");
|
|
break;
|
|
}
|
|
case 'valideConnexion':{
|
|
$login = $_REQUEST['login'];
|
|
$mdp = $_REQUEST['mdp']; //md5($_REQUEST['mdp']);
|
|
$utilisateur = $pdo->getInfosEleve($login,$mdp);
|
|
|
|
if(!is_array( $utilisateur)){
|
|
$formulaire ="frmIdentification";
|
|
$champ ="login";
|
|
include("vues/v_entete.php");
|
|
ajouterErreur("Login ou mot de passe incorrect");
|
|
include("vues/v_erreurs.php");
|
|
include("vues/v_connexion.php");
|
|
}
|
|
else{
|
|
$id = $utilisateur['EL_NUM'];
|
|
$nom = $utilisateur['EL_NOM'];
|
|
$prenom = $utilisateur['EL_PRENOM'];
|
|
$statut = $utilisateur['EL_STATUT'];
|
|
connecter($id,$nom,$prenom,$statut);
|
|
header ('location: index.php?choixTraitement=eleves&action=voir');
|
|
}
|
|
break;
|
|
}
|
|
default :{
|
|
$formulaire ="frmIdentification";
|
|
$champ ="login";
|
|
include("vues/v_entete.php");
|
|
include("vues/v_connexion.php");
|
|
break;
|
|
}
|
|
}
|
|
?>
|