diff options
Diffstat (limited to 'public/cart.php')
-rw-r--r-- | public/cart.php | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/public/cart.php b/public/cart.php index b888cd8..d02428d 100644 --- a/public/cart.php +++ b/public/cart.php @@ -3,32 +3,21 @@ <head> <?php include 'head.php' ?> <title>dit is product</title> + <link rel="stylesheet" href="cart.css"> </head> <body> <?php include 'navbar.php' ?> <div class="main limwidth"> <h2>dingen in je mand</h2> <div class="products"> - <a href="/product.php?id=123" class="product"> - <img src="img/placeholder.png" alt=""> - <span class="price">3,45</span> - <span class="name">courgette</span> - </a> - <a href="/product.php?id=123" class="product"> - <img src="img/placeholder.png" alt=""> - <span class="price">3,45</span> + <div class="product"> + <img src="img/placeholder.png" alt="productafbeelding"> <span class="name">courgette</span> - </a> - <a href="/product.php?id=123" class="product"> - <img src="img/placeholder.png" alt=""> + <label for="123-count">hoeveelheid:</label> + <input type="number" value="1" min="1" max="20" id="123-count"> + <button id="123-delete">weghalen</button> <span class="price">3,45</span> - <span class="name">courgette</span> - </a> - <a href="/product.php?id=123" class="product"> - <img src="img/placeholder.png" alt=""> - <span class="price">3,45</span> - <span class="name">courgette</span> - </a> + </div> </div> </div> <?php include 'footer.php' ?> |