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

31 lines
1.4 KiB
PHP
Executable File

<form id="formData">
<legend id="titre_formData">Ajouter des données</legend>
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="6%" align="center" class="required">Libellé Fr</td>
<td width="30%" ><INPUT class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
<td width="5%" align="center">Libellé Eng</td>
<td colspan="3" ><INPUT class="form-control" TYPE="text" id="libelleEng" NAME="libelleEng"></td>
</tr>
<tr>
<td width="5%" align="center" class="required">Date</td>
<td width="20%" ><INPUT class="form-control datepicker" TYPE="text" id="dateFerier" NAME="dateFerier" required AUTOCOMPLETE="OFF" ></td>
<td width="5%" align="center" class="required">Pays</td>
<td width="20%">
<SELECT onChange="afficheDonneesTableChoisie('Ajaxtblisterjoursferiers');" class="form-control" id="codePays" NAME="codePays" required AUTOCOMPLETE="OFF" >
<?php liste_options($pays,$_SESSION['codePaysSociete']); ?>
</SELECT>
</td>
<td width="5%" align="center">Demi-journée ?</td>
<td width="5%">
<INPUT class="form-control" TYPE="checkbox" id="demiJournee" NAME="demiJournee" value="1" onclick="if (this.checked) this.value=1; else this.value=0;" >
</td>
</tr>
</tbody>
</table>
</form>