-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpaytment.html
68 lines (63 loc) · 4.09 KB
/
paytment.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
<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>Lumen5 Technologies Ltd</title>
<link rel="icon" type="image/png" href="https://storage.googleapis.com/lumen5-site-images/favicon/favicon.ico">
<link rel="stylesheet" href="./styles/payment.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<div class="d-flex">
<div class="left-div">
<img src="https://stripe-camo.global.ssl.fastly.net/8c362dcde478842886a67b93643f08fd88d3b4242eb0c0e66bafb9c755e1745e/68747470733a2f2f66696c65732e7374726970652e636f6d2f66696c65732f4d44423859574e6a64463878515756476445784961305979546c6c6e65475a6b66475a6662476c325a56393265465a43553246745a304e694e33425265565a4a54573931556d78694d6e593030336b647a76444754" />
<div id="light-text"></div>
<div id="price-text">$149 Per Year</div>
</div>
<div class="right-div">
<div class="div-m">
<h3>Pay with card</h3>
</div>
<div style="clear: both;"></div>
<div >
<div style="text-align: left; margin-left: 10px;">Accepted Cards</div>
<div class="imgpayment">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQT5lM2jljhx2ybbxBNeon5H5B49GvxV6uGAVsAOhIy312kOUQhQCJV7FWTMUTtXCJmc-Q&usqp=CAU" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/MasterCard_Logo.svg/2560px-MasterCard_Logo.svg.png" />
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fd/Maestro_logo.svg/1200px-Maestro_logo.svg.png" />
<img src="https://logos-world.net/wp-content/uploads/2020/04/PayPal-Logo-2014-present.jpg" />
</div>
<!-- Card details -->
<!-- Name -->
<div class="carddetails">Name on Card</div>
<div class="detailsbox" id="boxdetail">
<input type="text" name="FullName" id="FullName" maxlength="75" title="Name on the Card"
placeholder="Name on the Card" >
</div>
<div class="carddetails">Card information</div>
<div class="detailsbox" id="boxdetail">
<input type="text" name="cardnumber" id="cardnumber" maxlength="16" title="Card number"
placeholder="XXXX-XXXX-XXXX-XXXX" inputmode="numeric" aria-invalid="false" onkeypress="javascript:return isNumber(event)">
<br>
<input type="tel" id="expire" maxlength="4" placeholder="MM/YY" onkeypress="javascript:return isNumber(event)">
<input type="password" id="cvv" maxlength="3" placeholder="CVV" onkeypress="javascript:return isNumber(event)">
</div>
<button type="button" id="subscribe" style="background-color: rgb(88, 70, 246); color: rgb(255, 255, 255);">Subscribe</button>
<div class="text-blw-btn">By confirming your subscription, you allow Lumen5 Technologies Ltd to charge your card for this payment and future payments in accordance with their terms.</div>
</div>
<!--Make payment-->
</div>
</div>
</body>
</html>
<script src="./scripts/payment.js"></script>