31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Gestion Extranet Client";
|
|
$idClient = $_SESSION['idClient_C'];
|
|
$extranetActif = $client['extranetActif'];
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<legend> <?= _("Gestion Extranet Client ") . " : " . $this->nettoyer($_SESSION['nomClient_C'])?> </legend>
|
|
|
|
<div id="div_liste">
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%" > <?= _("Nom") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?=$this->nettoyer($_SESSION['nomClient_C'])?>" readonly></td>
|
|
|
|
<td> </td>
|
|
<td>
|
|
<?php if($extranetActif==1): ?>
|
|
<input style="font-size:10pt;" class = "form-control btn btn-danger" type="button" value="<?= _("Désactiver") ?>" onClick="javascript:desactiver_user_assure('<?= $idClient ?>');">
|
|
<?php else: ?>
|
|
<input style="font-size:10pt;" class = "form-control btn btn-primary" type="button" value="<?= _("Activer") ?>" onClick="javascript:activer_user_assure('<?= $idClient ?>');">
|
|
<?php endif; ?>
|
|
</td>
|
|
</tbody>
|
|
</table>
|
|
</div>
|