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

39 lines
1.5 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">&times;</button>
<legend class="modal-title text-center">Ajouter un Collège Type</legend>
</div>
<div class="modal-body">
<form id="formModal">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="15%" class="required">Code:</td>
<td ><INPUT class="form-control majuscule" TYPE="text" id="codeCollegeType" NAME="codeCollegeType" autofocus required AUTOCOMPLETE="OFF" ></td>
</tr>
<tr>
<td width="15%" class="required">Libellé</td>
<?php if (est_anglophone()) : ?>
<td ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF" ></td>
<?php else: ?>
<td ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
<?php endif; ?>
</tr>
<tr>
<td colspan="4">
<input type="button" name="btn-enreg" id="btn-enreg" class="btn btn-primary form-control" value="Enregistrer"
onclick="JAVASCRIPT:ajoutercollegetype();">
</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>