<?php session_start(); if(!isset($_SESSION['auth'])) { header("location:index.php"); } require_once("../inc/confNetisse.php"); require_once("functions.php"); $CID = 0; if(!isset($_GET["cid"])) { header("location:cnsList.php"); } else { $CID = $_GET["cid"]; } $conseiller = getConseillerByID($CID); if($conseiller == null) header("location:cnsList.php"); ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title><?php echo $PROJECT_TITLE;?> : Traduction d'un conseiller</title> <link rel="stylesheet" href="css/font-awesome.min.css" /> <link rel="stylesheet" type="text/css" href="css/cadif.css" /> <link rel="stylesheet" type="text/css" href="css/dashboard.css" /> <link rel="stylesheet" type="text/css" href="css/cans/jquery-ui-1.8.17.custom.css" /> <!--<link rel="stylesheet" type="text/css" href="css/tableTools_jui.css" />--> <link rel="stylesheet" type="text/css" href="css/datatable_jui.css" /> <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="js/jquery-ui-1.8.22.custom.min.js"></script> <script type="text/javascript" src="js/jquery.dataTables.js"></script> <script type="text/javascript"> function checkForm() { if (document.getElementById("nom").value == "") { var POP = $('<div></div>').html("<center>Vous devez renseigner le champ 'Nom'.</center>").dialog({autoOpen: false,title: 'Erreur'}); POP.dialog({autoOpen:false, modal:true, draggable: false, width:360,close:function(ev, ui){document.getElementById("nom").focus();} }); POP.dialog("open"); } else if (document.getElementById("prenom").value == "") { var POP = $('<div></div>').html("<center>Vous devez renseigner le champ 'Prénom'.</center>").dialog({autoOpen: false,title: 'Erreur'}); POP.dialog({autoOpen:false, modal:true, draggable: false, width:360,close:function(ev, ui){document.getElementById("prenom").focus();} }); POP.dialog("open"); } else { document.formAgencyUpd.submit(); } } </script> </head> <body> <div id="global"> <div id="home"> <div id="logo"><a href="dashboard.php"><img src="/assets/img/logo.png" height="110" border="0"/></a></div> <div id="username"> <b><?php echo isset($_SESSION["nom"]) ? $_SESSION["nom"] : $_SESSION["matricule"];?></b> | <a href="close.php" class="link" title="Fermer et clore votre session">Déconnexion</a> <br/> </div> </div> <div id="panels"> <?php include "menu.php";?> <div class="main-content"> <div id="title"> Traduction du nom du conseiller "<?php echo $conseiller->nom.' '.$conseiller->prenom;?>" (<?php echo strtoupper($_REQUEST['lang']); ?>) </div> <div id="form"> <form name="formAgencyUpd" id="formAgencyUpd" action="do.php" method="post"> <input type="hidden" name="act" value="cnsTranslate"/> <input type="hidden" name="cid" value="<?php echo $CID; ?>"/> <input type="hidden" name="supp" id="supp" value="0"/> <table align="center" class="form"> <tr> <td width="100">Nom </td> <td><input type="text" name="nom" id="nom" size="30" tabindex="1" value="<?php echo $conseiller->nom_ar; ?>"/></td> </tr> <tr> <td width="100">Prénom </td> <td><input type="text" name="prenom" id="prenom" size="30" tabindex="1" value="<?php echo $conseiller->prenom_ar; ?>"/></td> </tr> <tr> <td colspan="2"> <br/><br/><input type="button" class="formAct" name="valider" id="valider" value="Valider" onclick="checkForm();" tabindex="8"/> </tr> </table> </form> </div> </div> </div> <?php include 'footer.php';?> <script> document.getElementById('nom').focus(); </script> </body> </html>