prestation/Vue/Ajaxtbmodifierbureau/index.php
2025-12-01 18:54:33 +00:00

32 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="<?=$bureau['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center" class="required">Code</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeBureau" NAME="codeBureau" required AUTOCOMPLETE="OFF" autofocus value="<?=$bureau['codeBureau']?>"></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" value="<?=$bureau['libelle']?>"></td>
<td width="5%" align="center">Nom Respo.</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 Respo.</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">Email</td>
<td colspan="5" ><INPUT class="form-control" TYPE="email" id="email" NAME="email" value="<?=$bureau['email']?>"></td>
</tr>
</tbody>
</table>
</form>