prestation/Vue/Ajaxlettrecle/index.php
2025-12-01 18:54:33 +00:00

42 lines
1.6 KiB
PHP

<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">Ajouter une lettre clé</legend>
</div>
<div class="modal-body">
<form id="formModal">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="13%" class="required">Lettre clé:</td>
<td><INPUT class="form-control majuscule" TYPE="text" id="lettreCle" NAME="lettreCle" autofocus required AUTOCOMPLETE="OFF" ></td>
</tr>
<tr>
<td width="13%" >Description Fr:</td>
<td><INPUT class="form-control" TYPE="text" id="description" NAME="description"></td>
</tr>
<tr>
<td width="13%" >Description Eng:</td>
<td ><INPUT class="form-control" TYPE="text" id="descriptionEng" NAME="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" id="btn-enreg" 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>
</div>