Design brut de la page nouvelle fiche de frais

This commit is contained in:
Pierr0
2023-12-19 21:41:28 +01:00
parent c226069923
commit 280f10fc0b
5 changed files with 77 additions and 17 deletions

55
vues/v_newFiche.php Normal file
View File

@@ -0,0 +1,55 @@
<h1>Nouvelle Fiche de frais</h1>
<br>
<p>Mois de Novembre 2023</p>
<br>
<p>Fais forfaitaire</p>
<div class="col-11 d-flex mx-auto">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Intitulé</th>
<th scope="col">Quantité</th>
<th scope="col">Montant</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Hotel</th>
<td><input type="text"></td>
<td>20 </td>
<td>400</td>
</tr>
</tbody>
</table>
</div>
<p>Hors Forfait</p>
<div class="col-11 d-flex mx-auto">
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>Libelle</th>
<th>Montant</th>
<th>Justificatif</th>
<th>Valider</th>
</tr>
</thead>
<tbody>
<tr>
<td scope="row">23/12/2023</td>
<td>Salle de réunion</td>
<td>130 </td>
<td>facture.pdf</td>
<td><button>Supprimer</button></td>
</tr>
<tr>
<td scope="row"><input type="date"></td>
<td><input type="text" placeholder="saisir un titre"></td>
<td><input type="text" placeholder="Saisir un Montant"></td>
<td><input type="file"></td>
<td><button>Valider</button></td>
</tr>
</tbody>
</table>
</div>