33 lines
1.5 KiB
PHP
Executable File
33 lines
1.5 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-select" id="codePays" NAME="codePays" required AUTOCOMPLETE="OFF">
|
|
<?php liste_options($pays,$_SESSION['codePaysSociete']); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="10%" align="center"><?= _("Demi-journée ?") ?></td>
|
|
<td width="5%">
|
|
<select name="demiJournee" id="demiJournee" class="form-select">
|
|
<?= liste_options($ouinonoptionnelle,'1',true) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|