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 '

'; }