-
Notifications
You must be signed in to change notification settings - Fork 3
/
cart.html
74 lines (65 loc) · 2.46 KB
/
cart.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CART | UNIQLO IN</title>
<script src="https://kit.fontawesome.com/f7879b5792.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/styles/nav.css" />
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<link rel="stylesheet" href="./styles/cart.css"/>
<link rel="stylesheet" href="./styles/footer.css"/>
<!-- <script src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" data-auto-a11y="true"></script> -->
</head>
<body>
<div id="navbarContainer"></div>
<!-- <div id="navbar">
<div id="navbarContainer"></div>
<div class="profilecont">
</div>
<div id="hover">
</div>
</div> -->
<div id="main">
<div class="pageLinks">
<p> <a href="index.html">UNIQLO HOME PAGE</a>/
<p id="this">SHOPPING CART</p>
</p>
</div>
<h1>SHOPPING CART</h1>
<div id="cartDiv">
<p>Your cart is currently empty.</p>
<button onclick="goToNextPage()">CONTINUE SHOPPING</button>
</div>
<div id="recentlyView">
<h1>RECENTLY VIEWED</h1>
<div class="slideProducts"></div>
</div>
</div>
<div id="popup" class="none">
<div class="overlay"></div>
<!-- <div id="loader">
<img src="https://cdn.dribbble.com/users/1787505/screenshots/7300251/media/a351d9e0236c03a539181b95faced9e0.gif"
alt="Loader" width="100%">
</div> -->
<div class="content">
<div class="close-btn" onclick="toggle()">×</div>
<h3>REMOVE ITEM</h3>
<p>Are you sure you want to remove this item from your cart?</p>
<button id="removeBtn">REMOVE</button>
<button onclick="toggle()" id="cancelBtn">CANCEL</button>
</div>
</div>
<div id="footerDiv"></div>
</body>
</html>
<script type="text/javascript" src="./scripts/cart.js"></script>
<script type="module">
import footer from './components/footer.js';
// let footerDiv = document.getElementById('div');
// footerDiv.innerHTML = footer();
document.getElementById('footerDiv').innerHTML = footer();
</script>
<script type="module" src="./scripts/main.js">
</script>