27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<?php
|
|
// $this->titre = "INTER-SANTE - Créer un nouveau tarif médicaments";
|
|
?>
|
|
|
|
<legend> <?= _("Nouveau Tarif Oqtiques") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%" > <?= _("Nom Français") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td align="center" width="15%" > <?= _("Nom 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_tarif_optiques();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_tarifs_optiques();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|