forked from alhussain-shaikh/Toursim-Webdevelop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayment.html
161 lines (148 loc) · 7.61 KB
/
Payment.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!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>WANDERLUST</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/LoginStyle.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="apple-touch-icon" sizes="180x180" href="img/LogoWanderlust.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/LogoWanderlust.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/LogoWanderlust.png">
<link rel="manifest" href="/site.webmanifest">
<script src="https://apis.google.com/js/platform.js" async defer></script>
<!-- Add Facebook SDK -->
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js"></script>
</head>
<body onload='if (window.location.href.substr(window.location.href.length - 6) == "#about") { introAboutLogoTransition(); }'>
<!--navbar-->
<nav class="navbar glass" style="height: 70px;">
<span><a href="#home" style="display:flex; align-items: center;"><img class="img2" src="./img/LogoWanderlust.png" width="40"
style="margin: -25px -10px -25px -20px"><h1 class="logo"> WANDERLUST</h1></a></span>
<ul class="nav-links">
<li><a href="index.html" id="pri" class="active cir_border">Home</a></li>
<li><a href="tour_details.html" id="sec" class="cir_border">Tours</a></li>
<li><a href="booking.html" id="hex" class="cir_border">Booking</a></li>
<li><a href="index.html#explore" id="tri" class="cir_border">Explore</a></li>
<li><a href="index.html#about" id="quad" class="cir_border">Packages</a></li>
<li><a href="Login.html" id="quint" class="cir_border">Login</a></li>
<li><a href="index.html#contact" id="hex" class="cir_border">Contact</a></li>
<li><div>
<input type="checkbox" class="checkbox dark" id="checkbox">
<label for="checkbox" class="label">
<i class="fa fa-moon-o"></i>
<i class='fa fa-sun-o'></i>
<div class='ball'>
</label>
</div></li>
</ul>
<img src="./img/menu-btn.png" alt="" class="menu-btn">
</nav>
<br>
<br>
<br>
<br>
<br>
<section id="payment">
<div class="title">
<h1 class="font-color"> Payment </h1>
<div class="line"></div>
</div>
<br>
<br>
<div class="container">
<div class="row">
<div class="col-75">
<div class="container">
<form action="/action_page.php">
<div class="row">
<div class="col-50">
<h3>Billing Address</h3>
<label for="fname"><i class="fa fa-user"></i> Full Name</label>
<input type="text" id="fname" name="firstname" placeholder="John M. Doe">
<label for="email"><i class="fa fa-envelope"></i> Email</label>
<input type="text" id="email" name="email" placeholder="john@example.com">
<label for="adr"><i class="fa fa-address-card-o"></i> Address</label>
<input type="text" id="adr" name="address" placeholder="542 W. 15th Street">
<label for="city"><i class="fa fa-institution"></i> City</label>
<input type="text" id="city" name="city" placeholder="New York">
<div class="row">
<div class="col-50">
<label for="state">State</label>
<input type="text" id="state" name="state" placeholder="NY">
</div>
<div class="col-50">
<label for="zip">Zip</label>
<input type="text" id="zip" name="zip" placeholder="10001">
</div>
</div>
</div>
<div class="col-50">
<h3>Payment</h3>
<label for="fname">Accepted Cards</label>
<div class="icon-container">
<i class="fa fa-cc-visa" style="color:navy;"></i>
<i class="fa fa-cc-amex" style="color:blue;"></i>
<i class="fa fa-cc-mastercard" style="color:red;"></i>
<i class="fa fa-cc-discover" style="color:orange;"></i>
</div>
<label for="cname">Name on Card</label>
<input type="text" id="cname" name="cardname" placeholder="John More Doe">
<label for="ccnum">Credit card number</label>
<input type="text" id="ccnum" name="cardnumber" placeholder="1111-2222-3333-4444">
<label for="expmonth">Exp Month</label>
<input type="text" id="expmonth" name="expmonth" placeholder="September">
<div class="row">
<div class="col-50">
<label for="expyear">Exp Year</label>
<input type="text" id="expyear" name="expyear" placeholder="2018">
</div>
<div class="col-50">
<label for="cvv">CVV</label>
<input type="text" id="cvv" name="cvv" placeholder="352">
</div>
</div>
</div>
</div>
<label>
<input type="checkbox" checked="checked" name="sameadr"> Shipping address same as billing
</label>
<input type="submit" value="Continue to checkout" class="btn">
</form>
</div>
</div>
<div class="col-25">
<div class="container">
<h4>Cart
<span class="price" style="color:black">
<i class="fa fa-shopping-cart"></i>
<b>4</b>
</span>
</h4>
<p><a href="#">Product 1</a> <span class="price">$15</span></p>
<p><a href="#">Product 2</a> <span class="price">$5</span></p>
<p><a href="#">Product 3</a> <span class="price">$8</span></p>
<p><a href="#">Product 4</a> <span class="price">$2</span></p>
<hr>
<p>Total <span class="price" style="color:black"><b>$30</b></span></p>
</div>
</div>
</div>
</div>
</section>
<!-- <section class="footer">
<span>Created By A9 Group | © 2022 All rights reserved.</span>
<div class="social">
<li>
<a href="https://alhussain-shaikh.github.io/AlhussainPortfolio.github.io/" target="_blank" rel="noreferrer"><i class="fa fa-globe"></i></a>
<a href="https://github.com/alhussain-shaikh" target="_blank" rel="noreferrer"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/al-hussain-shaikh-033729231/" target="_blank" rel="noreferrer"><i class="fa fa-linkedin-square"></i></a>
</li>
</div>
</section> -->
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="js/script.js"></script>
</body>
</html>