AP44/vues/v_newFiche.php

55 lines
1.6 KiB
PHP

<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>