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

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="10%" align="center" class="required">Code</td>
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeTitre" NAME="codeTitre" required AUTOCOMPLETE="OFF" autofocus ></td>
<td width="10%" align="center" class="required">Libellé FR</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
<td width="10%" align="center">Titre Courrier FR</td>
<td width="15%" ><INPUT class="form-control majuscule" TYPE="text" id="titreCourrier" NAME="titreCourrier"></td>
</tr>
<tr>
<td width="10%" align="center"> <?= _("Type Personne") ?> </td>
<td width="10%" >
<SELECT class="form-control" id="codeTypePersonne" NAME="codeTypePersonne" autofocus>
<?php liste_options($typepersonne,""); ?>
</SELECT>
</td>
<td width="10%" align="center">Libellé ENG</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng"></td>
<td width="10%" align="center">Titre Courrier ENG</td>
<td width="15%" ><INPUT class="form-control majuscule" TYPE="text" id="titreCourrierEng" NAME="titreCourrierEng"></td>
</tr>
</tbody>
</table>
</form>