-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
83 lines (78 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatilbe" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Payment Gateway</title>
<link rel="shortcut icon" href="images/fav-card.png" type="image/x-icon">
<link rel="stylesheet" href="payment.css">
</head>
<body>
<div class="container">
<form action="">
<div class="row">
<div class="column">
<h3 class="title">Billing Address</h3>
<div class="input-box">
<span>Full Name :</span>
<input type="text" placeholder="Ayaz Khan">
</div>
<div class="input-box">
<span>Email :</span>
<input type="email" placeholder="[email protected]">
</div>
<div class="input-box">
<span>Address :</span>
<input type="text" placeholder="Room - district - landmark">
</div>
<div class="input-box">
<span>City :</span>
<input type="text" placeholder="Mumbai">
</div>
<div class="flex">
<div class="input-box">
<span>State :</span>
<input type="text" placeholder="Maharashtra">
</div>
<div class="input-box">
<span>Pin code :</span>
<input type="text" placeholder="400001">
</div>
</div>
</div>
<div class="column">
<h3 class="title">Payment</h3>
<div class="input-box">
<span>Cards Accepted :</span>
<img src="images/imgcards.png" alt="">
</div>
<div class="input-box">
<span>Name on Card :</span>
<input type="text" placeholder="Mr Ayaz Khan">
</div>
<div class="input-box">
<span>debit/credit card number :</span>
<input type="text" placeholder="1111 2222 3333 4444">
</div>
<div class="input-box">
<span>Exp. Month :</span>
<input type="text" placeholder="August">
</div>
<div class="flex">
<div class="input-box">
<span>Exp. Year :</span>
<input type="number" placeholder="2026">
</div>
<div class="input-box">
<span>CVV :</span>
<input type="number" placeholder="123">
</div>
</div>
</div>
</div>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</body>
</html>