27 lines
1.1 KiB
PHP
Executable File
27 lines
1.1 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Nouveau Profil utilisateur";
|
|
?>
|
|
|
|
<legend> <?= _("Nouveau Profil utilisateur") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("FRANCAIS") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("ANGLAIS") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_profil_ass();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_au_profil_ass();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|