61 lines
2.2 KiB
PHP
61 lines
2.2 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Nouveau Médecin";
|
|
?>
|
|
|
|
<legend> <?= _("Informations Nouveau Médecin") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Nom") ?> </td>
|
|
<td width="40%"><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="nom" NAME="nom" required autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Prénoms") ?> </td>
|
|
<td colspan="3" ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="prenoms" NAME="prenoms" required ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Spécialité") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control" id="codeSpecialite" NAME="codeSpecialite" autofocus >
|
|
<?php liste_options($specialite,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center"> E-mail </td>
|
|
<td colspan="3"><INPUT style='font-size:10pt;' class="form-control" TYPE="email" id="email" NAME="email" placeholder="E-mail" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Téléphone") ?> </td>
|
|
<td><INPUT style='font-size:10pt;' class="form-control" TYPE="tel" id="telephone" NAME="telephone" ></td>
|
|
|
|
<td align="center"> <?= _("No Ordre") ?> </td>
|
|
<td>
|
|
<INPUT style='font-size:10pt;' class="form-control" type="text" id="noOrdreMedecin" name="noOrdreMedecin"
|
|
onChange="this.value=supprimer_espace_string(this.value);">
|
|
</td>
|
|
|
|
<td align="center" width="5%"> Sex</td>
|
|
<td>
|
|
<SELECT style='font-size:10pt;' class="form-control" id="sexe" NAME="sexe" required>
|
|
<?php liste_options($sexe,""); ?>
|
|
</SELECT>
|
|
</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_medecin();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td colspan="3" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_a_medecins();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_unicite_medecin">
|
|
<INPUT class="sr-only" TYPE="text" id="unicitemedecin" NAME="unicitemedecin" value="0" >
|
|
</div>
|