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

29 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">Code</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeBanque" NAME="codeBanque" required AUTOCOMPLETE="OFF" autofocus ></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">code Swift</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="codeSwift" NAME="codeSwift"></td>
</tr>
<tr>
<td width="5%" align="center"> Compte Cpt</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="numeroCompteCpt" NAME="numeroCompteCpt"></td>
<td width="5%" align="center"> Compte Bancaire</td>
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="numeroCompteBancaire" NAME="numeroCompteBancaire"></td>
<td width="5%" align="center">Banque Société</td>
<td width="5%">
<INPUT class="form-control" TYPE="checkbox" id="banqueSociete" NAME="banqueSociete" value="1" onclick="if (this.checked) this.value=1; else this.value=0;" >
</td>
</tr>
</tbody>
</table>
</form>