38 lines
1.6 KiB
PHP
Executable File
38 lines
1.6 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">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="<?=$gc_typegarant['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" align="center">Code:</td>
|
|
<td width="15%" ><INPUT class="form-control majuscule" TYPE="text" id="codeTypeGarant" NAME="codeTypeGarant" autofocus required AUTOCOMPLETE="OFF" value="<?=$gc_typegarant['codeTypeGarant']?>"></td>
|
|
<td width="10%" align="center">Libellé:</td>
|
|
<td width="65%"><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?=$gc_typegarant['libelle']?>"></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:enregistrerTypeGarant();">
|
|
</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>
|