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

33 lines
1.5 KiB
PHP
Executable File

<form id="formData">
<legend id="titre_formData"><?= _("Ajouter des données") ?></legend>
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
<td width="5%" align="center"><?= _("Nom Responsable") ?></td>
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="nomRespon" NAME="nomRespon"></td>
</tr>
<tr>
<td width="5%" align="center"><?= _("Prénoms Responsable") ?></td>
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="prenomRespon" NAME="prenomRespon"></td>
<td width="5%" align="center"><?= _("Tél. Fixe") ?></td>
<td width="30%" ><INPUT class="form-control" TYPE="tel" id="telephoneFixe" NAME="telephoneFixe"></td>
</tr>
<tr>
<td width="5%" align="center"><?= _("Tél. Mobile") ?></td>
<td width="30%" ><INPUT class="form-control" TYPE="tel" id="telephonePortable" NAME="telephonePortable"></td>
<td width="5%" align="center"><?= _("Email") ?></td>
<td width="30%" ><INPUT class="form-control" TYPE="email" id="email" NAME="email"></td>
</tr>
</tbody>
</table>
</form>