-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyour_cart.php
executable file
·56 lines (33 loc) · 939 Bytes
/
your_cart.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>YOUR CART</title>
<link rel="stylesheet" href="css/header_footer.css">
<link rel="stylesheet" href="css/your_cart.css">
</head>
<body>
<!-- header file -->
<?php include 'inc/header.php'; ?>
<script>
function redirect(){
window.location.href = "index.php";
}
</script>
<section>
<div class="items">
<div>
<div class="img">
<img id="nothingInCart" src="img/logo/nothingInCart.png" alt="">
</div>
<div class="span">
<span>There is nothing in your cart...</span>
</div>
</div>
<div class="btn">
<button onclick="redirect()">Buy something</button>
</div>
</div>
</section>
</body>
</html>