prestation/Vue/Ajaxmodifierlettrecle/index.php
2025-12-05 10:42:46 +00:00

47 lines
1.9 KiB
PHP
Executable File

<div class="modal-dialog modal-lg">
<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">Modifier un Type de Garant</legend>
</div>
<div class="modal-body">
<form id="formModal">
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$lettre['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="13%" align="center" class="required">Lettre clé:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="lettreCle" NAME="lettreCle" autofocus required AUTOCOMPLETE="OFF" value="<?=$lettre['lettreCle']?>"></td>
</tr>
<tr>
<td width="13%" align="center">Description Fr:</td>
<td><INPUT class="form-control majuscule" TYPE="text" id="description" NAME="description" value="<?=$lettre['description']?>"></td>
</tr>
<tr>
<td width="13%" align="center">Description Eng:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="descriptionEng" NAME="descriptionEng" value="<?=$lettre['descriptionEng']?>"></td>
</tr>
<tr>
<td colspan="4" align="center" height="50" style="vertical-align: top; color: #551210; background-color: #ffffff; font-size: 20px;">
</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:enregistrelettrecle();">
</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>