prestation/Vue/Ajaxtbajouterintermediaires/index.php
2025-12-05 10:42:46 +00:00

47 lines
2.4 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">Code</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeApporteur" NAME="codeApporteur" required AUTOCOMPLETE="OFF" autofocus ></td>
<td width="5%" align="center" class="required">Type</td>
<td width="20%">
<select name="codeTypeApporteur" id="codeTypeApporteur" class="form-control" required AUTOCOMPLETE="OFF" >
<?= liste_options($typeinter,'',false) ?>
</select>
</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" ></td>
<td width="5%" align="center">Responsable</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="nomResponsable" NAME="nomResponsable"></td>
</tr>
<tr>
<td width="5%" align="center">Téléphone</td>
<td width="20%" ><INPUT class="form-control" TYPE="tel" id="telephone" NAME="telephone"></td>
<td width="5%" align="center">Email</td>
<td width="20%" ><INPUT class="form-control" TYPE="email" id="email" NAME="email"></td>
<td width="5%" align="center">Bureau</td>
<td width="20%">
<select name="codeBureau" id="codeBureau" class="form-control">
<?= liste_options($bureau,'',false) ?>
</select>
</td>
<td width="5%" align="center">Déduire Com</td>
<td width="5%">
<INPUT class="form-control" TYPE="checkbox" id="deduireComm" NAME="deduireComm" value="1" onclick="if (this.checked) this.value=1; else this.value=0;" >
</td>
</tr>
<tr>
<td width="5%" align="center">Adr. Géo.</td>
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="text" id="adresseGeo" NAME="adresseGeo" value=" "></td>
<td width="5%" align="center">Adr. Post.</td>
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="text" id="adressePost" NAME="adressePost"></td>
</tr>
</tbody>
</table>
</form>