From 326738d068430d5a72b77e521eabe36529bc9697 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Thu, 7 Jan 2016 22:00:20 +0100 Subject: [PATCH] [x] Mise en page de la page PROFIL --- page/settings.php | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/page/settings.php b/page/settings.php index e2d5de3..2da73bc 100755 --- a/page/settings.php +++ b/page/settings.php @@ -48,26 +48,29 @@ if( connected() ){ // si l'utilisateur est connecté $droits = explode(',', $infos['droits']); echo "
"; - echo '

'; - echo 'Nom : '.ucfirst($infos['nom']).'

'; - echo 'Prénom : '.ucfirst($infos['prenom']).'

'; - echo 'Statut : '; + + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo '
Identifiant'.$infos['identifiant'] .'
Prénom' .ucfirst($infos['prenom']).'
Nom' .strtoupper($infos['nom']).'
Statut'; $count = 0; foreach ($droits as $droit) { if( $count > 0 ) echo ', '; - + switch($droit){ - case 'admin' : echo 'administrateur'; break; - case 'master' : echo 'référent'; break; - case 'teacher': echo 'enseignant'; break; - case 'student': echo 'étudiant'; break; - default: echo 'inconnu'; break; + case 'admin' : echo 'administrateur'; break; + case 'master' : echo 'référent'; break; + case 'teacher': echo 'enseignant'; break; + case 'student': echo 'étudiant'; break; + default: echo 'inconnu'; break; } $count++; } - echo '

'; - echo 'Mail : '.$infos['mail']; - echo '

'; + echo '
Mail'.$infos['mail'].'
'; + echo '

'; }