32 lines
1.9 KiB
PHP
Executable File
32 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="<?=$bureau['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center">Code</td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeBureau" NAME="codeBureau" value="<?=$bureau['codeBureau']?>" disabled></td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" autofocus value="<?=$bureau['libelle']?>"></td>
|
|
|
|
<td width="5%" align="center"><?= _("Nom Responsable") ?></td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="nomRespon" NAME="nomRespon" value="<?=$bureau['nomRespon']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center"><?= _("Prénom Responsable") ?></td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="prenomRespon" NAME="prenomRespon" value="<?=$bureau['prenomRespon']?>"></td>
|
|
|
|
<td width="5%" align="center"><?= _("Tél. Fixe") ?></td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="tel" id="telephoneFixe" NAME="telephoneFixe" value="<?=$bureau['telephoneFixe']?>"></td>
|
|
|
|
<td width="5%" align="center"><?= _("Tél. Mobile") ?></td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="tel" id="telephonePortable" NAME="telephonePortable" value="<?=$bureau['telephonePortable']?>"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center">E-mail</td>
|
|
<td colspan="5" ><INPUT class="form-control" TYPE="email" id="email" NAME="email" value="<?=$bureau['email']?>"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|