362 lines
18 KiB
PHP
362 lines
18 KiB
PHP
<?php
|
|
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
|
|
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1;
|
|
|
|
if (!$_SESSION['connected'])
|
|
echo ('Vous devez être connecté afin de pouvoir utiliser cette fonctionnalité');
|
|
elseif ($_SESSION['tabInfo']['profil']<>'Administrateur' && !preg_match('/MONPROFIL/i', $_SESSION['tabInfo']['droits'])) {
|
|
echo ('Vous n\'avez pas les droits nécessaires pour utiliser cette fonctionnalité ('.$_SESSION['tabInfo']['profil'].' '.$_SESSION['tabInfo']['droits'].')');
|
|
$siret=$_REQUEST['siret'];
|
|
}
|
|
else {
|
|
//
|
|
$tabInfo = $_SESSION['tabInfo'];
|
|
//echo '<h6>'.$_SESSION['tabInfo']['mode_edition'].'</h6>';
|
|
$message='';
|
|
|
|
if (isset($_REQUEST['login']) && $_REQUEST['login']<>'' && $_REQUEST['login']<>$_SESSION['tabInfo']['login'] && $_SESSION['tabInfo']['profil']=='Administrateur')
|
|
$loginVu=$_REQUEST['login'];
|
|
elseif ($tabOptions['action']=='new')
|
|
$loginVu=$tabOptions['login'];
|
|
else
|
|
$loginVu=$_SESSION['tabInfo']['login'];
|
|
|
|
if ($tabOptions['action']=='save' || $tabOptions['action']=='new') {
|
|
$message='Erreur lors de la mise à jour du compte !';
|
|
|
|
$tabOptions['nom']=preg_replace('/[^0-9A-Z\'-]/i', ' ', strtoupper(strtr(stripslashes($tabOptions['nom']), 'àáâãäåæçèéêëìíîïðñòóôõöùúûüýÿÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝŸ', 'aaaaaaaceeeeiiiionooooouuuuyyAAAAAAACEEEEIIIIONOOOOOUUUUYY')));
|
|
$tabOptions['prenom']=ucwords(strtolower(preg_replace('/[^0-9A-Z\'-]/i', ' ', strtoupper(strtr(stripslashes($tabOptions['prenom']), 'àáâãäåæçèéêëìíîïðñòóôõöùúûüýÿÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝŸ', 'aaaaaaaceeeeiiiionooooouuuuyyAAAAAAACEEEEIIIIONOOOOOUUUUYY')))));
|
|
$tabOptions['reference']=preg_replace('/[^0-9A-Z\'-]/i', ' ', strtoupper(strtr(stripslashes($tabOptions['reference']), 'àáâãäåæçèéêëìíîïðñòóôõöùúûüýÿÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝŸ', 'aaaaaaaceeeeiiiionooooouuuuyyAAAAAAACEEEEIIIIONOOOOOUUUUYY')));
|
|
|
|
try {
|
|
//print_r($tabOptions);die();
|
|
$O = $client->setInfosLogin($loginVu, $tabOptions);
|
|
if ($O['result']==1) $message='Compte mis à jour !';
|
|
} catch (SoapFault $fault) {
|
|
$message='Erreur SOAP lors de la mise à jour du compte !';
|
|
}
|
|
|
|
if ($_REQUEST['referer']=='administration') {
|
|
?>
|
|
<script language="javascript">
|
|
alert("Le profil <?=$loginVu?> a été mis à jour !");
|
|
document.location.href='/?page=administration&id=<?=$idEntreprise?>&siret=<?=$siret?>';
|
|
</script>
|
|
<?php
|
|
}
|
|
|
|
if ($_REQUEST['frmOptions']['changepwd']==1 && $loginVu==$_SESSION['tabInfo']['login'] && $tabOptions['action']=='save' ) {
|
|
?>
|
|
<script language="javascript">
|
|
alert("La modification de votre mot de passe nécessite votre déconnexion !");
|
|
document.location.href='/?page=main&action=logout';
|
|
</script>
|
|
<?php
|
|
}
|
|
|
|
}
|
|
|
|
/** Utilisation du WS **/
|
|
try {
|
|
if ($_REQUEST['action']<>'new') {
|
|
$O = $client->getInfosLogin($loginVu);
|
|
$login=$O['result'];
|
|
} else {
|
|
$O = $client->getNextLogin($loginVu);
|
|
$loginNew=$O['result']['racine'];
|
|
$idClient=$O['result']['idClient'];
|
|
}
|
|
} catch (SoapFault $fault) {
|
|
include_once(realpath(dirname(__FILE__).'/../../').'/includes/soaperror.php');
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
die();
|
|
}
|
|
|
|
if ($_SESSION['tabInfo']['profil']=='Administrateur')
|
|
$admin=true;
|
|
else
|
|
$admin=false;
|
|
?>
|
|
<style type="text/css">
|
|
table {border-collapse:collapse;}
|
|
.bottom td {border-bottom:1px solid;}
|
|
</style>
|
|
<form name="form_moncompte" action="./?page=moncompte" method="POST" enctype="multipart/form-data">
|
|
<? if ($_REQUEST['action']=='new') { ?>
|
|
<input type="hidden" name="frmOptions[action]" value="new"/>
|
|
<? } else { ?>
|
|
<input type="hidden" name="frmOptions[action]" value="save"/>
|
|
<? } ?>
|
|
<input type="hidden" name="siret" value="<?=$siret?>"/>
|
|
<input type="hidden" name="id" value="<?=$idEntreprise?>"/>
|
|
<input type="hidden" name="login" value="<?=$loginVu?>"/>
|
|
<input type="hidden" name="frmOptions[idClient]" value="<?=$idClient?>"/>
|
|
<input type="hidden" name="referer" value="<?=$_REQUEST['referer']?>"/>
|
|
<table width="580" border="0" align="left" bgcolor="#FFFFFF">
|
|
<?
|
|
if ($message<>'') {
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="500" colspan="2" class="StyleInfoData"><h3><?=$message;?></h3></td>
|
|
</tr>
|
|
<?
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="3"><img src="./img/rub_profil.png" width="577" height="36"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Identifiant utilisateur</td>
|
|
<? if ($_REQUEST['action']<>'new') { ?>
|
|
<td width="350" class="StyleInfoData"><?=$loginVu?></td>
|
|
<? } else { ?>
|
|
<td width="350" class="StyleInfoData"><input type="text" size="20" maxlength="80" name="frmOptions[login]" value="<?=$loginNew?>"/></td>
|
|
<? } ?>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Identité (NOM/Prénom)</td>
|
|
<? if ($admin) { ?>
|
|
<td width="350" class="StyleInfoData"><input type="text" size="20" maxlength="80" name="frmOptions[nom]" value="<?=$login['nom']?>"/> <input type="text" size="20" maxlength="80" name="frmOptions[prenom]" value="<?=$login['prenom']?>"/></td>
|
|
<? } else { ?>
|
|
<td width="350" class="StyleInfoData"><?=$login['nom'].' '.$login['prenom']?></td>
|
|
<? } ?>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Réf. facturation (service, etc...)</td>
|
|
<? if ($admin) { ?>
|
|
<td width="350" class="StyleInfoData"><input type="text" size="20" maxlength="80" name="frmOptions[reference]" value="<?=$login['reference']?>"/></td>
|
|
<? } else { ?>
|
|
<td width="350" class="StyleInfoData"><?=$login['reference']?></td>
|
|
<? } ?>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Adresse e-mail</td>
|
|
<td width="350" class="StyleInfoData"><input type="text" size="30" maxlength="80" name="frmOptions[email]" value="<?=$login['email']?>"/></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Numéros de téléphone<br/><i>(Fixe, Fax, Mobile)</i></td>
|
|
<td width="350" class="StyleInfoData"><input type="text" size="10" maxlength="15" name="frmOptions[tel_fix]" value="<?=$login['tel']?>"/><input type="text" size="10" maxlength="15" name="frmOptions[tel_fax]" value="<?=$login['fax']?>"/><input type="text" size="10" maxlength="15" name="frmOptions[tel_mob]" value="<?=$login['mobile']?>"/><!--<br/><input type="checkbox" name="frmOptions[copie_sms]" value="<?=$_SESSION['tabInfo']['copieParSms']?>"/> Recevoir une copie de mes messages de surveillance par SMS--></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Mot de passe</td>
|
|
<td width="350" class="StyleInfoData"><input type="password" size="15" maxlength="32" name="frmOptions[password]" value="oqsrihgwslglm" onkeypress="document.form_moncompte.changepwd.checked=1"/> <input name="frmOptions[changepwd]" id="changepwd" type="checkbox" value="1"/> Réinitialiser le mot de passe</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"><img src="./img/srub_moteur.png" width="576" height="27"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Résultats par page</td>
|
|
<td width="350" class="StyleInfoData"><select name="frmOptions[rech_nbrep]">
|
|
<?
|
|
$opt[10]=$opt[20]=$opt[30]=$opt[50]=$opt[100]=$opt[150]=$opt[200]='';
|
|
if ($login['nbReponses']==10) $opt[10]='selected';
|
|
elseif ($login['nbReponses']==20) $opt[20]='selected';
|
|
elseif ($login['nbReponses']==30) $opt[30]='selected';
|
|
elseif ($login['nbReponses']==50) $opt[50]='selected';
|
|
elseif ($login['nbReponses']==100) $opt[100]='selected';
|
|
elseif ($login['nbReponses']==150) $opt[150]='selected';
|
|
elseif ($login['nbReponses']==200) $opt[200]='selected';
|
|
?> <option value="10" <?=$opt[10]?>>10</option>
|
|
<option value="20" <?=$opt[20]?>>20</option>
|
|
<option value="30" <?=$opt[30]?>>30</option>
|
|
<option value="50" <?=$opt[50]?>>50</option>
|
|
<option value="100" <?=$opt[100]?>>100</option>
|
|
<option value="150" <?=$opt[150]?>>150</option>
|
|
<option value="200" <?=$opt[200]?>>200</option>
|
|
</select></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Inclure</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<input type="checkbox" name="frmOptions[rech_limites][]" value="assocs" checked disabled/> les associations<br/>
|
|
<input type="checkbox" name="frmOptions[rech_limites][]" value="actifs" checked disabled/> les actifs<br/>
|
|
<input type="checkbox" name="frmOptions[rech_limites][]" value="radies" checked disabled/> les radiés<br/>
|
|
<input type="checkbox" name="frmOptions[rech_limites][]" value="sieges" checked disabled/> les établissements secondaires</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"><img src="./img/srub_surveillance.png" width="576" height="27"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Supports pour les alertes</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<input type="checkbox" name="frmOptions[alertes][]" value="sms" disabled/> SMS<br/>
|
|
<input type="checkbox" name="frmOptions[alertes][]" value="fax" disabled/> Fax<br/>
|
|
<input type="checkbox" name="frmOptions[alertes][]" value="mail" checked disabled/> Mail<br/>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if ($_SESSION['tabInfo']['login']=='ylenaour') {
|
|
$formatMail=$login['formatMail'];
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Format des emails</td>
|
|
<td width="350" class="StyleInfoData"><select name="frmOptions[formatMail]">
|
|
<optgroup label="Sans pièce jointe">
|
|
<option value="txt1" <?if($formatMail=='txt1') echo 'selected';?>>1 annonce/mail en texte</option>
|
|
<option value="txt2" <?if($formatMail=='txt2') echo 'selected';?>>1 mail/jour en texte</option>
|
|
<!--<option value="htm1" <?if($formatMail=='htm1') echo 'selected';?>>Mail format Html</option>-->
|
|
</optgroup>
|
|
<optgroup label="Avec pièce jointe">
|
|
<!--<option value="pdf" <?if($formatMail=='pdf') echo 'selected';?>>Pdf en pièce jointe</option>-->
|
|
<option value="pdf1" <?if($formatMail=='pdf1') echo 'selected';?>>Pdf (1 annonce/page)</option>
|
|
<!--<option value="csv" <?if($formatMail=='csv') echo 'selected';?>>Pièce jointe CSV</option>-->
|
|
<option value="xls" <?if($formatMail=='xls') echo 'selected';?>>Pièce jointe Excel</option>
|
|
</optgroup>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
//print_r($_SESSION['tabInfo']);die();
|
|
} ?>
|
|
<tr>
|
|
<td colspan="3"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3"><img src="./img/srub_droits.png" width="576" height="27"></td>
|
|
</tr>
|
|
<tr class="bottom">
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Type de profil</td>
|
|
<td width="350" class="StyleInfoData"><?=$login['profil']?></td>
|
|
</tr>
|
|
<tr class="bottom">
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Préférences</td>
|
|
<?php
|
|
$tabPref=array( 'naf4'=>'',
|
|
'news'=>'',
|
|
'mappy'=>'',
|
|
'cartes'=>'',
|
|
'voirsurv'=>'',
|
|
);
|
|
if (preg_match('/NAF4/i', $login['pref'])) $tabPref['naf4']='checked';
|
|
if (preg_match('/MAPPY/i', $login['pref'])) $tabPref['mappy']='checked';
|
|
if (preg_match('/NEWS/i', $login['pref'])) $tabPref['news']='checked';
|
|
if (preg_match('/CARTES/i', $login['pref'])) $tabPref['cartes']='checked';
|
|
if (preg_match('/VOIRSURV/i', $login['pref'])) $tabPref['voirsurv']='checked';
|
|
?>
|
|
<td width="350" class="StyleInfoData"><input type="checkbox" name="frmOptions[pref][]" value="naf4" <?=$tabPref['naf4']?>/> Afficher les anciens NAF<br/>
|
|
<input type="checkbox" name="frmOptions[pref][]" value="mappy" <?=$tabPref['mappy']?>/> Afficher les façades d'immeubles<br/>
|
|
<input type="checkbox" name="frmOptions[pref][]" value="cartes" <?=$tabPref['cartes']?>/> Afficher les cartes et les plans<br/>
|
|
<input type="checkbox" name="frmOptions[pref][]" value="news" <?=$tabPref['news']?>/> Afficher les news Google©<br/>
|
|
<input type="checkbox" name="frmOptions[pref][]" value="voirsurv" <?=$tabPref['voirsurv']?>/> Afficher les entités sous surveillances<br/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Droits d'accès</td>
|
|
<?php
|
|
$init='';
|
|
|
|
$tabDroits = array( 'kbis'=>$init,
|
|
'ipari'=>$init,
|
|
'actes'=>$init,
|
|
'marques'=>$init,
|
|
'indiscore'=>$init,
|
|
'scorecsf'=>$init,
|
|
'monprofil'=>$init,
|
|
'eveninsee'=>$init,
|
|
'avisinsee'=>$init,
|
|
'survinsee'=>$init,
|
|
'survannonce'=>$init,
|
|
'survbilan'=>$init,
|
|
'survscore'=>$init,
|
|
'survliste'=>$init,
|
|
'investig'=>$init,
|
|
'international'=>$init,
|
|
);
|
|
|
|
if ( preg_match('/KBIS/i', $login['droits'])) $tabDroits['kbis'].='checked';
|
|
if ( preg_match('/IPARI/i', $login['droits'])) $tabDroits['ipari'].='checked';
|
|
if ( preg_match('/ACTES/i', $login['droits'])) $tabDroits['actes'].='checked';
|
|
if ( preg_match('/MARQUES/i', $login['droits'])) $tabDroits['marques'].='checked';
|
|
if ( preg_match('/INDISCORE/i', $login['droits'])) $tabDroits['indiscore'].='checked';
|
|
if ( preg_match('/SCORECSF/i', $login['droits'])) $tabDroits['scorecsf'].='checked';
|
|
if ( preg_match('/MONPROFIL/i', $login['droits'])) $tabDroits['monprofil'].='checked';
|
|
if ( preg_match('/EVENINSEE/i', $login['droits'])) $tabDroits['eveninsee'].='checked';
|
|
if ( preg_match('/AVISINSEE/i', $login['droits'])) $tabDroits['avisinsee'].='checked';
|
|
if ( preg_match('/SURVINSEE/i', $login['droits'])) $tabDroits['survinsee'].='checked';
|
|
if ( preg_match('/SURVANNONCE/i', $login['droits'])) $tabDroits['survannonce'].='checked';
|
|
if ( preg_match('/SURVBILAN/i', $login['droits'])) $tabDroits['survbilan'].='checked';
|
|
if ( preg_match('/SURVSCORE/i', $login['droits'])) $tabDroits['survscore'].='checked';
|
|
if ( preg_match('/SURVLISTE/i', $login['droits'])) $tabDroits['survliste'].='checked';
|
|
if ( preg_match('/INVESTIG/i', $login['droits'])) $tabDroits['investig'].='checked';
|
|
if ( preg_match('/INTERNATIONAL/i', $login['droits'])) $tabDroits['international'].='checked';
|
|
?>
|
|
<td width="350" class="StyleInfoData">
|
|
<?php
|
|
if ( $_SESSION['tabInfo']['login']=='ylenaour' ||
|
|
$_SESSION['tabInfo']['login']=='jmartory' ||
|
|
$_SESSION['tabInfo']['login']=='mheitz' ||
|
|
$_SESSION['tabInfo']['login']=='mricois'
|
|
) {?>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="kbis" <?=$tabDroits['kbis']?> <?if (!$admin) echo 'disabled';?> />Extrait RCS<br/>
|
|
<?php }
|
|
if ($_SESSION['tabInfo']['idClient']<>18) { ?>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="actes" <?=$tabDroits['actes']?> <?if (!$admin) echo 'disabled';?> />Pièces officielles<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="ipari" <?=$tabDroits['ipari']?> <?if (!$admin) echo 'disabled';?> />Investigation par l'image IparI©<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="marques" <?=$tabDroits['marques']?> <?if (!$admin) echo 'disabled';?> />Marques déposées<br/>
|
|
<?php } ?>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="indiscore" <?=$tabDroits['indiscore']?> <?if (!$admin) echo 'disabled';?> />indiScore©<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="eveninsee" <?=$tabDroits['eveninsee']?> <?if (!$admin) echo 'disabled';?> />Évènements INSEE<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="avisinsee" <?=$tabDroits['avisinsee']?> <?if (!$admin) echo 'disabled';?> />Avis de situation INSEE<br/>
|
|
<?php
|
|
if ($_SESSION['tabInfo']['idClient']<>18) { ?>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="scorecsf" <?=$tabDroits['scorecsf']?> <?if (!$admin) echo 'disabled';?> />score CSF<br/>
|
|
<?php } ?>
|
|
|
|
<input type="checkbox" name="frmOptions[droits][]" value="survannonce" <?=$tabDroits['survannonce']?> <?if (!$admin) echo 'disabled';?> />Surveillance des annonces légales<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="survinsee" <?=$tabDroits['survinsee']?> <?if (!$admin) echo 'disabled';?> />Surveillance des événements INSEE<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="survbilan" <?=$tabDroits['survbilan']?> <?if (!$admin) echo 'disabled';?> />Surveillance des bilans <br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="survscore" <?=$tabDroits['survscore']?> <?if (!$admin) echo 'disabled';?> />Surveillance des événements sur le score<br/>
|
|
<input type="checkbox" name="frmOptions[droits][]" value="survliste" <?=$tabDroits['survliste']?> <?if (!$admin) echo 'disabled';?> />Liste des surveillances<br/>
|
|
|
|
<input type="checkbox" name="frmOptions[droits][]" value="investig" <?=$tabDroits['investig']?> <?if (!$admin) echo 'disabled';?> />Investigation<br/>
|
|
|
|
<input type="checkbox" name="frmOptions[droits][]" value="international" <?=$tabDroits['international']?> <?if (!$admin) echo 'disabled';?> />Recherche Internationale<br/>
|
|
|
|
<input type="checkbox" name="frmOptions[droits][]" value="monprofil" <?=$tabDroits['monprofil']?> <?if (!$admin) echo 'disabled';?> /> Mon profil
|
|
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
if ( $loginVu==$_SESSION['tabInfo']['login'] && ($_SESSION['tabInfo']['login']=='ylenaour' || $_SESSION['tabInfo']['login']=='jmartory' || $_SESSION['tabInfo']['login']=='mheitz' || $_SESSION['tabInfo']['login']=='mpurcarin' || $_SESSION['tabInfo']['login']=='mcochet' || $_SESSION['tabInfo']['login']=='aegasse' || $_SESSION['tabInfo']['login']=='mricois')){
|
|
if ($_SESSION['tabInfo']['mode_edition']==1) $strMode='checked'; else $strMode='';
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Mode actuel</td>
|
|
<td width="350" class="StyleInfoData"><input type="checkbox" name="frmOptions[mode_edition]" value="1" <?=$strMode?>/>Edition</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
<tr>
|
|
<td colspan="3"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="3" align="center"><input type="submit" value="Sauver"/></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php
|
|
}
|
|
?>
|