diff options
Diffstat (limited to 'public/cart.php')
-rw-r--r-- | public/cart.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/public/cart.php b/public/cart.php new file mode 100644 index 0000000..b888cd8 --- /dev/null +++ b/public/cart.php @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html> +<head> + <?php include 'head.php' ?> + <title>dit is product</title> +</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> + <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> + <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> + <?php include 'footer.php' ?> +</body> +</html> |