aboutsummaryrefslogtreecommitdiff
path: root/public/cart.php
blob: 1ad48cd97acb5d77d1ff1219eac49557cbac5a31 (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
<!DOCTYPE html>
<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>