blob: e1c790703967d8837065346543045ad4430d142f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<?php require "../lib/login.php" ?>
<?php if_logged_in(false, "/login.php", true) ?>
<html>
<head>
<?php include 'head.php' ?>
<title>mand</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">
<div class="product">
<img src="img/placeholder.png" alt="productafbeelding">
<span class="name">courgette</span>
<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>
</div>
</div>
</div>
<?php include 'footer.php' ?>
</body>
</html>
|