34 lines
1.9 KiB
PHP
34 lines
1.9 KiB
PHP
<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" class="required">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 ></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-control" 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>
|