26 lines
1008 B
PHP
Executable File
26 lines
1008 B
PHP
Executable File
<?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%" align="center" class="required"> <?= _("Libellé") ?> </td>
|
|
<td colspan="5"><INPUT style="font-size:10pt;" class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOFOCUS></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="6" height="25" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="3" > <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>
|