56 lines
2.7 KiB
PHP
56 lines
2.7 KiB
PHP
<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">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" class="required">Type</td>
|
|
<td width="25%">
|
|
<select name="codeTypeApporteur" id="codeTypeApporteur" class="form-control">
|
|
<?= liste_options($typeapp,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Déduire Commission</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;" required AUTOCOMPLETE="OFF" >
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Bureau</td>
|
|
<td width="20%">
|
|
<select name="codeBureau" id="codeBureau" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($bureau,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Email</td>
|
|
<td width="30%"><INPUT class="form-control" TYPE="email" id="email" NAME="email"></td>
|
|
|
|
<td width="5%" align="center">Téléphone</td>
|
|
<td width="25%"><INPUT class="form-control" TYPE="tel" id="telephone" NAME="telephone"></td>
|
|
|
|
<td width="5%" align="center">Type Système</td>
|
|
<td width="5%">
|
|
<INPUT class="form-control" TYPE="checkbox" id="typeSysteme" NAME="typeSysteme" value="0" onclick="if (this.checked) this.value=1; else this.value=0;" >
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center">Responsable</td>
|
|
<td width="20%"><INPUT class="form-control majuscule" TYPE="text" id="nomResponsable" NAME="nomResponsable"></td>
|
|
|
|
<td width="5%" align="center">Adr. Géo.</td>
|
|
<td width="30%"><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>
|