34 lines
1.2 KiB
PHP
Executable File
34 lines
1.2 KiB
PHP
Executable File
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-bs-dismiss="modal">×</button>
|
|
<legend class="modal-title text-center">Spécialité Contextuelle</legend>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form id="formModal">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Spécialité") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeSpecialite" NAME="codeSpecialite" style='font-size:10pt; height:30px;'>
|
|
<?php liste_options($specialite, $codeSpecialite); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4">
|
|
<input type="button" name="btn-enreg-typegarant" id="btn-enreg-typegarant" class="btn btn-primary form-control" value="Enregistrer"
|
|
onclick="JAVASCRIPT:medecin_specialite_prestataire('<?= $codeMedecin?>','<?= $codePrestataire?>');">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</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>
|
|
</div>
|