16 lines
824 B
PHP
Executable File
16 lines
824 B
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="<?=$typesociete['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Code</td>
|
|
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="codeType" NAME="codeType" readonly value="<?= $this->nettoyer($typesociete['codeType']); ?>"></td>
|
|
|
|
<td width="5%" align="center" class="required">Code</td>
|
|
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeType" NAME="codeType" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($typesociete['codeType']); ?>" >
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|