27 lines
1.3 KiB
PHP
27 lines
1.3 KiB
PHP
<?php $this->titre = "INTER-SANTE - Créer un nouveau Réseau de soins"; ?>
|
|
|
|
<legend> <?= _("Nouveau Réseau de soins") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > Code </td>
|
|
<td width="10%" ><INPUT font style="text-transform: uppercase;" class="form-control" TYPE="text" id="codeReseau" NAME="codeReseau" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("T M") ?> </td>
|
|
<td width="10%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="0" id="tm" NAME="tm" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td colspan="2" > <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_reseau();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td colspan="2" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_liste_reseaus();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|