-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayment.html
More file actions
117 lines (93 loc) · 3.84 KB
/
Copy pathPayment.html
File metadata and controls
117 lines (93 loc) · 3.84 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
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homepage-Nomad Speaks</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<div class="header-div">
<header class="header">
<a href="index.html">NOMAD SPEAKS</a>
<a href="index.html"><img src="img/logo.jpg" ></a><hr style="width:80%">
</header>
<center><nav class="menu">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT US</a>
<a href="destinations.html">DESTINATIONS</a>
<a href="traveltips.html">TRAVEL TIPS</a>
<a href="contact.html">CONTACT</a>
</nav></center>
</div>
<body>
<div class="form1">
<form role="form" method="post" enctype="multipart/form-data" action="index.php">
<p style="font-size:26px"><b>Complete Your Payment</b></p>
<hr>
<div class="payment">
<label for="fname">Accepted Cards</label>
<div class="icon-container" >
<input type="radio" name="card" style="height:20px; width:20px"> <i class="fa fa-cc-visa" style="color:navy;"></i>
<input type="radio" name="card" style="height:20px; width:20px"><i class="fa fa-cc-amex" style="color:blue;"></i>
<input type="radio" name="card"style="height:20px; width:20px"><i class="fa fa-cc-mastercard" style="color:red;"></i>
<input type="radio" name="card"style="height:20px; width:20px"><i class="fa fa-cc-discover" style="color:orange;"></i>
</div>
<label for=" NAME ON CARD"> Name On Card</label><br>
<input id=name type="text" name=name ><br>
<!--<label for=" Mobile"> Mobile Number</label><br>
<input id=name type="text" name=mobile ><br>-->
<label for="CREDIT CARD NUMBER">Card Number</label><br>
<input id=number type="text" name=number><br>
<label for="EXP MONTH" > Date of Expiry</label><br>
<select name="month" id="month" style="height:25px; width:50px">
<option value="01">01</option>
<option value="02">02</option>
<option value="03">03</option>
<option value="04">04</option>
<option value="05">05</option>
<option value="06">06</option>
<option value="07">07</option>
<option value="08">08</option>
<option value="09">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>
<select name="year" id="year" style="height:25px; width:50px">
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
</select>
<br>
<label for="CVV" > CVV</label><br>
<input type="password" name="password" style="height:25px; width:50px" pattern="[0-9]{3}"><br>
<hr>
<button type="submit" name="sendotp">Confirm</button>
</div>
</form>
<hr>
<!-- <form action="C:\xampp\htdocs\PHP\process1.php" method="post" >
<p style="font-size:26px"><b>Please enter the OTP:</b></p>
<hr><hr>
<div class="payment">
<lablel for=" otp">Enter the OTP:</lablel><br>
<input type="text" name="otp">
<hr>
<button type="submit" name="validateotp">Validate</button>
-->
</div>
</form>
</div>
<footer class="footer">
Copyright © 2020 . Nomad Speaks . Sacchin Adarsh
</footer>
</body>
</html>