74 lines
2.8 KiB
PHP
74 lines
2.8 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Nouveau Praticien";
|
|
?>
|
|
|
|
<legend> <?= _("Informations Nouveau Praticien") ?> </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 majuscule" TYPE="text" id="nom" NAME="nom" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Prénoms") ?> </td>
|
|
<td colspan="3" ><INPUT style='font-size:10pt;' class="form-control majuscule" TYPE="text" id="prenoms" NAME="prenoms" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Corporation") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="codeMetier" NAME="codeMetier" required AUTOCOMPLETE="OFF" autofocus >
|
|
<?php liste_options($metier,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="10%" align="center"> <?= _("Téléphone") ?> </td>
|
|
<td colspan="3"><INPUT style='font-size:10pt;' class="form-control" TYPE="tel" id="telephone" NAME="telephone" ></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Spécialité") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" 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 > Adresse </td>
|
|
<td ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="adresse" NAME="adresse" ></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%"> Genre</td>
|
|
<td>
|
|
<SELECT style='font-size:10pt;' class="form-control" id="sexe" NAME="sexe" required AUTOCOMPLETE="OFF" >
|
|
<?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>
|