-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathorder-confirmation.html
74 lines (66 loc) · 2.65 KB
/
order-confirmation.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>ORDER CONFIRMATION | UNIQLO IN</title>
<script src="https://kit.fontawesome.com/f7879b5792.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/styles/nav.css" />
<link rel="stylesheet" href="./styles/order-confirmation.css" />
<link rel="shortcut icon" href="https://asset.uniqlo.com/logotypes/uniqlo_roman.ico">
<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>/
<a href="cart.html">SHOPPING CART</a>/
<a href="checkout-delivery.html">DELIVERY</a>/
<a href="checkout-payment.html">PAYMENT OPTION</a>/
<p id="this">ORDER CONFIRMATION</p>
</p>
</div>
<h1>ORDER PLACED</h1>
<div id="cartDiv">
<div class="showCartDiv">
<div class="leftDiv">
<div>
<h3 style="margin-left:20px;">1.DELIVERY OPTION</h3>
</div>
<div>
<h3 style="margin-left:20px;">2.PAYMENT OPTION</h3>
</div>
<div>
<h1 style="margin-left:20px;">3. ORDER CONFIRMATION</h1>
<hr>
<h3 style="margin-left:20px;">Order Placed Successfully</h3>
<p style="margin-left:20px;">Your Order Is Successfully Placed. We Will Be Shipping It As Soon As Possible.</p>
<div id="deliveryForm">
<button onclick="goToNextPage()">SHOP MORE !</button>
</div>
</div>
</div>
<div class="rightDiv"></div>
</div>
</div>
</div>
<div id="footerDiv"></div>
</body>
</html>
<script type="text/javascript" src="./scripts/order-confirmatin.js"></script>
<script type="module">
import footer from './components/footer.js';
document.getElementById('footerDiv').innerHTML = footer();
</script>
<script type="module" src="./scripts/main.js">
</script>