production/Vue/Ajaxspecialitecontextuelle/index.php
2025-12-01 16:12:12 +00:00

33 lines
1.3 KiB
PHP
Executable File

<div class="modal-dialog modal-lg" style="max-width: 40%;" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal">&times;</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="15%" class="required"> <?= _("Spécialité") ?> </td>
<td>
<select class="form-control selectpicker" data-live-search="true" id="codeSpecialite" NAME="codeSpecialite" style='font-size:10pt; height:30px;' required>
<?php liste_options($specialite, ""); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="2">
<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>