-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrdering.php
26 lines (26 loc) · 871 Bytes
/
Ordering.php
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
<!Doctype html>
<html>
<head>
<title>Mall.com</title>
<link rel="stylesheet" href="templateStyle.css">
<link rel="stylesheet" href="styleSheet.css">
<meta charset="UTF-8">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="Images/Mall_Logo.png" type="image/png">
</head>
<body>
<!-- navigation -->
<?php include_once ("Modules/Navmod_client.php");?>
<!-- Ordering -->
<div class="main container">
<h1>Besteld</h1>
<a href="Index.php">Terug</a>
</div>
<?php
unset($_SESSION['Cart']);
?>
<!-- Footer -->
<?php include_once ("Modules/Footer.php");?>
</body>
</html>