79 lines
3.2 KiB
PHP
Executable File
79 lines
3.2 KiB
PHP
Executable File
<div class="modal-dialog">
|
|
<div style='width:800px;' class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-bs-dismiss="modal">×</button>
|
|
<legend class="modal-title text-center" id="user"><?= _("Nouveau Praticien") ?></legend>
|
|
</div>
|
|
<div style='width:100%;' class="modal-body">
|
|
<form id="formModal">
|
|
<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-select" 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 colspan="6"> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_praticien();" 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>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" id="btn-fermer-modal" class="btn btn-default" data-bs-dismiss="modal">Fermer</button>
|
|
</div>
|
|
</div>
|
|
</div>
|