Skip to content
Snippets Groups Projects
Commit 5bb2f632 authored by Axel Po's avatar Axel Po
Browse files

feat: add btn back up

parent 75aa96e3
Branches
2 merge requests!6Dev,!4Feat/cart
{% extends 'base.html.twig' %} {% block title %}Cart {% endblock %} {% block
body %}
<section>
<h3 class="font-bold text-5xl">Votre panier</h3>
<a href="{{path('home')}}">Retour</a>
<h3 class="font-bold text-5xl my-2">Votre panier</h3>
{% if app.user %}
<p class="mt-2">Connecté sous {{ app.user.email }}</p>
<p >Connecté sous {{ app.user.email }}</p>
{% endif %}
<div class="flex flex-col my-12">
......@@ -63,11 +64,17 @@ body %}
{% endfor %}
</div>
<a
href="{{ path('home') }}"
class="inline-block bg-orangeLight py-4 px-12 rounded-md"
>Retour</a
>
<div class="flex justify-between">
<a
href="{{ path('home') }}"
class="inline-block bg-orangeLight py-4 px-12 rounded-md"
>Ajouter d'autre produit</a
>
<div class="inline-block bg-orangeLight py-4 px-12 rounded-md">
Total TTC : 8584 €
</div>
</div>
</section>
{% endblock %} {# {% extends 'base.html.twig' %} {% block title %}Cart index{%
endblock %} {% block body %}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment