{% extends 'base2.html.twig' %}
{% block title %}Hello DefaultController!{% endblock %}
{% block body %}
<style>
.card {
box-shadow: 0 20px 27px 0 rgb(0 0 0 / 5%);
}
.card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 0 solid rgba(0,0,0,.125);
border-radius: 1rem;
}
</style>
<section class="landing-padding">
<div class="container my-5">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="invoice-title">
<h4 class="float-end font-size-15">Facture #0934861 <span class="badge bg-success font-size-12 ms-2">Payé</span></h4>
<div class="mb-4">
<h2 class="mb-1 text-muted">Modixom</h2>
</div>
<div class="text-muted">
<p class="mb-1">2 rue Montvault, 57820, Amanvillers</p>
<p class="mb-1"><i class="uil uil-envelope-alt me-1"></i> pauline@aready.io</p>
<p><i class="uil uil-phone me-1"></i> 03 86 94 75 12</p>
</div>
</div>
<hr class="my-4">
<div class="row">
<div class="col-sm-6">
<div class="text-muted">
<h5 class="font-size-16 mb-3">Facturé à:</h5>
<h5 class="font-size-15 mb-2">Corentin Adelé</h5>
<p class="mb-1">11 rue Lucien Albert, 57420, Fleury</p>
<p class="mb-1">corentin.adl@gmail.com</p>
<p>06 59 31 90 60</p>
</div>
</div>
<!-- end col -->
<div class="col-sm-6">
<div class="text-muted text-sm-end">
<div>
<h5 class="font-size-15 mb-1">Numéro de facture :</h5>
<p>#DZ0112</p>
</div>
<div class="mt-4">
<h5 class="font-size-15 mb-1">Date de facture :</h5>
<p>12 Oct, 2020</p>
</div>
<div class="mt-4">
<h5 class="font-size-15 mb-1">N ° de commande:</h5>
<p>#1123456</p>
</div>
</div>
</div>
<!-- end col -->
</div>
<!-- end row -->
<div class="py-2">
<h5 class="font-size-15">Récapitulatif de la commande</h5>
<div class="table-responsive">
<table class="table align-middle table-nowrap table-centered mb-0">
<thead>
<tr>
<th style="width: 70px;">N °</th>
<th>Article</th>
<th>Prix</th>
<th>Quantité</th>
<th class="text-end" style="width: 120px;">Total</th>
</tr>
</thead><!-- end thead -->
<tbody>
<tr>
<th scope="row">01</th>
<td>
<div>
<h5 class="text-truncate font-size-14 mb-1">Crédit</h5>
<p class="text-muted mb-0">1 crédit = 1€</p>
</div>
</td>
<td>10€</td>
<td>10</td>
<td class="text-end">10€</td>
</tr>
<!-- end tr -->
<tr>
<th scope="row" colspan="4" class="text-end">Sous-total</th>
<td class="text-end">10€</td>
</tr>
<!-- end tr -->
<tr>
<th scope="row" colspan="4" class="border-0 text-end">
Nombre de crédit :</th>
<td class="border-0 text-end">10</td>
</tr>
<!-- end tr -->
<tr>
<th scope="row" colspan="4" class="border-0 text-end">Total</th>
<td class="border-0 text-end"><h4 class="m-0 fw-semibold">10€</h4></td>
</tr>
<!-- end tr -->
</tbody><!-- end tbody -->
</table><!-- end table -->
</div><!-- end table responsive -->
<div class="d-print-none mt-4">
<div class="float-end">
<a href="#" class="btn btn-primary w-md mb-4">Envoyer</a>
<a href="javascript:window.print()" class="btn btn-success me-1"><i class="fa fa-print"></i></a>
</div>
</div>
</div>
</div>
</div>
</div><!-- end col -->
</div>
</div>
</section>
{% endblock %}