-
Notifications
You must be signed in to change notification settings - Fork 10
/
order-success.html
103 lines (93 loc) · 3.94 KB
/
order-success.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- CSS only -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="style.css" />
<!-- JavaScript Bundle with Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
</head>
<body class="d-flex flex-column">
<div class="container my-5">
<div>
<h1 class="text-center">e-Shopper</h1>
</div>
<div class="d-flex justify-content-center">
<div class="login-box m-auto mt-5 col-4 text-center">
<h3 class="text-center">Order #123 Successful</h3>
<i class="bi bi-check-circle-fill text-success success-icon"></i>
<h6>We will deliver your order in X days</h6>
<a href="/">Go Back To Home</a>
</div>
</div>
</div>
<div class="footer mt-auto bg-dark text-light">
<div class="container py-3">
<div class="row d-flex footer-items">
<div class="col-lg-4">
<h5>Categories</h5>
<ul>
<li><a href="#">Watches</a></li>
<li><a href="#">Mobiles</a></li>
<li><a href="#">Tablets</a></li>
<li><a href="#">Audio</a></li>
<li><a href="#">Drones</a></li>
</ul>
</div>
<div class="col-lg-4">
<h5>Useful Links</h5>
<ul>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Mission</a></li>
</ul>
</div>
<div class="col-lg-4">
<h5>Get Updates</h5>
<div class="d-flex subscribe">
<input type="text" class="form-control">
<button class="btn btn-warning">Subscribe</button>
</div>
<div class="mt-2">
<div class="btn-group me-2 social-icons" role="group" aria-label="First group">
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-facebook"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-instagram"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-twitter"></i>
</button>
<button type="button" class="btn btn-secondary mx-1 d-flex flex-column justify-content-center align-items-center">
<i class="bi bi-linkedin"></i>
</button>
</div>
</div>
</div>
</div>
<div class="row text-center">
<span>@coderdost</span>
</div>
</div>
</div>
<!-- End of Footer -->
</body>
</html>