production/Vue/Ajaxtbmodifiertitre/index.php
2025-12-01 16:12:12 +00:00

34 lines
1.9 KiB
PHP
Executable File

<form id="formData">
<legend id="titre_formData"><?= _("Modification des données") ?></legend>
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$titre['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="10%" align="center" >Code</td>
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeTitre" NAME="codeTitre" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($titre['codeTitre']); ?>" autofocus readonly></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" value="<?= $this->nettoyer($titre['libelle']); ?>"></td>
<td width="10%" align="center">Titre Courrier FR</td>
<td width="15%" ><INPUT class="form-control majuscule" TYPE="text" id="titreCourrier" NAME="titreCourrier" value="<?= $this->nettoyer($titre['titreCourrier']); ?>"></td>
</tr>
<tr>
<td width="10%"> <?= _("Type Personne") ?> </td>
<td width="10%" >
<select class="form-select" id="codeTypePersonne" NAME="codeTypePersonne" autofocus>
<?php liste_options($typepersonne,$this->nettoyer($titre['codeTypePersonne']),true); ?>
</SELECT>
</td>
<td width="10%" align="center"><?= _("Libellé Eng") ?></td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($titre['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" value="<?= $this->nettoyer($titre['titreCourrierEng']); ?>"></td>
</tr>
</tbody>
</table>
</form>