-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaymentSuccess.html
More file actions
112 lines (88 loc) · 3.81 KB
/
paymentSuccess.html
File metadata and controls
112 lines (88 loc) · 3.81 KB
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
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LuggageWay - client</title>
<!-- Font Aowesome kit's code -->
<script src="https://kit.fontawesome.com/8ebc734131.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- custom css file link -->
<link rel="stylesheet" href="assets\css\style.css" />
<link rel="stylesheet" href="assets\css\style.css" />
</head>
<body>
<!-- header section starts -->
<header class="users_page">
<div id="menu-bar" class="fas fa-bars"></div>
<a href="index.html" class="logo"><img herf="Home.html" src="assets\images\logo.png" alt="LuggageWay" width="150px" /></a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="index.html#about_us">About us</a>
<a href="index.html#recruitment">Recruitment</a>
<a href="index.html#sponsors">Sponsors</a>
<a href="index.html#review">Reviews</a>
<a href="index.html#contact_us">Contact us</a>
</nav>
<div class="icons">
<div class="dropdown">
<i class="fa fa-user-circle-o dropbtn"></i>
<div class="dropdown-content">
<a href="Client_MyOrders.html">My account</a>
<a href="index.html">Logout</a>
</div>
</div>
</div>
</header>
<!-- header section ends -->
<!-- client body section starts -->
<section>
<div class="wrapper">
<ul class="linking">
<li><a href="Client_MyOrders.html"><i style="color:black;" class="fa fa-home"></i></a></li>
<li><a href="new_order.html" style="color:black;">New order</a></li>
<li><a href="Checkout.html" style="color:black;">Checkout</a></li>
</ul>
<main>
<div class="Successcard">
<div style="border-radius:200px; height:200px; width:200px; background: #F8FAF5; margin:0 auto;">
<i class="checkmark Successicon">✓</i>
</div>
<h1 class="Successtxt">Success</h1>
<p class="ptxt">We received your Order request;<br/> we'll be in touch shortly!</p>
</div>
</main>
</div>
</section>
<!-- footer section stars -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>Branch locations</h3>
<a href="# ">Saudi Arabia</a>
</div>
<div class="box">
<h3>Quick links</h3>
<a href="index.html">Home</a>
<a href="index.html#about_us">About us</a>
<a href="index.html#recruitment">Recruitment</a>
<a href="index.html#sponsors">Sponsors</a>
<a href="index.html#review">Reviews</a>
<a href="index.html#contact_us">Contact us</a>
</div>
<div class="social_media box">
<h3>Follow us</h3><br>
<li> <a href="https://www.instagram.com/luggageway1/"><i class="fab fa-instagram"></i></a></li>
<li> <a href="https://twitter.com/Luggageway1"><i class="fab fa-twitter"></i></a></li>
<li> <a href="linkedin.com/in/luggageway-company-935940239"><i class="fab fa-linkedin"></i></a>
</li>
</div>
</div>
<h1 class="credit">
created by <span> LuggageWay Team for gradutiom project </span> | all rights reserved!
</h1>
</section>
<!-- footer section ends -->
<!-- custom js file link -->
</body>
</html>