-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
122 lines (109 loc) · 5.26 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Payment Gateway form</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="header_area">
<div class="wrapper">
<nav id="nav">
<ul>
<li><a href="#">Form One</a></li>
<li><a href="#">Form Two</a></li>
<li><a href="#">Form Three</a></li>
<li><a href="#">Form Four</a></li>
</ul>
</nav>
</div>
</header>
<section id="form-one" >
<div class="payment-gateway-area">
<div class="payment-details" data-aos="fade-up">
<div class="box box-1">
<p>Total to Pay</p>
<h5>$128</h5>
</div>
<div class="box box-2">
<p>How would you like to pay?</p>
<div class="payment-selection">
<form action="">
<table>
<tbody>
<tr>
<td>
<div>
<input class="radio-btn" type="radio" value="mastercard" checked name="payment1" id="payment-input-1"> <label for="payment-input-1">Credit Card</label>
</div>
<div class="img-box"><img src="img/mastercard.png" alt=""></div><div class="img-box"><img src="img/visa-card.png" alt=""></div></td>
</tr>
<tr>
<td>
<div>
<input class="radio-btn" value="paypal" type="radio" name="payment1" id="payment-input-2"> <label for="payment-input-2">Paypal</label>
</div>
<div class="img-box"><img src="img/paypal.png" alt=""></div></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<div class="box box-3">
<a href="#"><i class="fa-solid fa-arrow-left"></i> Back to Order Overview</a>
</div>
</div>
<div class="payment-form" data-aos="fade-up">
<div class="card-form" >
<h1>Your Payment Details</h1>
<div class="box box1">
<label for="pay-form-inout-1">Name on Card</label>
<input type="text" id="pay-form-inout-1" placeholder="MD OMAR FARUK">
</div>
<div class="box box2">
<label for="pay-form-inout-2">Card Number</label>
<input type="text" placeholder="XXXX XXXX XXXX XXXX">
<img src="img/visa-card.png" alt="">
</div>
<div class="box box3">
<div class="inner-box1">
<label for="">Expiry</label>
<input type="text" name="" id="" placeholder="MM/YY">
</div>
<div class="inner-box2">
<label for="pay-form-inout-3">CCV</label>
<input type="text" name="" id="">
</div>
</div>
<div class="box box4">
<div class="inner-box1">
<input class="btn" type="submit" name="" id="" value="Pay Now">
</div>
</div>
</div>
<div class="paypal-form" data-aos="fade-up">
<h1>Your Payment Details</h1>
<div class="box box1">
<img src="img/paypal-credit-and-cards.png" alt="paypal">
</div>
<div class="box box4">
<div class="inner-box1">
<input class="btn" type="submit" name="" id="" value="Pay Now with Paypal">
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="js/main.js"></script>
</body>
</html>