-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
97 lines (75 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Payment Info</title>
<link rel="stylesheet" type="text/css" href="payment.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<form action="payment.html" method="get" target="_blank">
<h1>Payment Details
<span id="logos"><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></span>
</h1>
<div class="contentform">
<div class="leftcontact">
<div class="form-group">
<p>Full Name <span>*</span></p>
<span class="icon-case"><i class="fa fa-user"></i></span> <input type="text" name="nom" required placeholder="full name">
<div class="validation"></div>
</div>
<div class="form-group">
<p>Card Holder's Name <span>*</span></p>
<span class="icon-case"><i class="fa fa-user-circle-o"></i></span>
<input type="text" name="prenom" required placeholder="Name on Card">
<div class="validation"></div>
</div>
<div class="form-group">
<p>Expire By <span>*</span></p>
<span class="icon-case"><i class="fa fa-calendar-check-o"></i></span>
<input type="text" name="date" maxlength="4" required placeholder="MM/YY" />
<div class="validation"></div>
</div>
<div class="form-group">
<p>Coupon Code <span></span></p>
<span class="icon-case"><i class="fa fa-gift"></i></span>
<input type="text" name="coupon" maxlength="6" placeholder="e.g: M56sHf" /><br>
<div class="validation"></div>
</div>
</div>
<div class="rightcontact">
<div class="form-group">
<p>E-mail <span>*</span></p>
<span class="icon-case"><i class="fa fa-envelope"></i></span>
<input type="email" name="prenom" id="prenom" required placeholder="@email" />
<div class="validation"></div>
</div>
<div class="form-group">
<p>Card Number <span>*</span></p>
<span class="icon-case"><i class="fa fa-credit-card-alt"></i></span>
<input type="text" name="card" maxlength="12" required placeholder="**** **** **** ****" />
<div class="validation"></div>
</div>
<div class="form-group">
<p>CCV <span>*</span></p>
<span class="icon-case"><i class="fa fa-key"></i></span>
<input type="password" name="security" maxlength="3" required placeholder="***">
<div class="validation"></div>
</div>
<div class="form-group">
<p id="alternate"> Alternate Payment ? </p>
<div class="social">
<a href="https://www.paypal.com/us/signin"><img src="pp.png"></a>
<a href="https://www.coinbase.com/signin"><img src="btc.png"></a>
<a href="https://www.myetherwallet.com/access-my-wallet"><img src="eth.png"></a>
</div><br>
<div class="validation"></div>
</div>
</div>
</div>
<button type="submit" class="button-contact">Checkout</button>
</form>
</body>
</html>