-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatway.html
65 lines (52 loc) · 2.65 KB
/
gatway.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
<!DOCTYPE html>
<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">
<link rel="stylesheet" href="gateway.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="maingate">
<div class="preetigate">
<button class="sidebar" type="button">
<a href=""> <span class="material-icons slideIconOpen"></span></a>
<span class="material-icons slideIconClose">backspace</span>
</button>
<div class="side-panel">
<h1>Enter New Card</h1>
<hr>
<label for="ccn">Card Number</label> <br>
<input id="ccn" type="tel" inputmode="numeric" pattern="[0-9\s]{13,19}" autocomplete="cc-number" maxlength="19" placeholder=" 1234 - 5678 - 9876 - 5432">
<br>
<label for="dateCCN">Valid Through</label><label id="cvvLable" for="CCV">CVV <img src="https://assets.pharmeasy.in/web-assets/dist/ae4793a7.svg" alt=""></label>
<br>
<input type="number" id="dateCCN" placeholder="MM/YY"/> <input type="password" id="cvv" />
<br>
<label for="name">Name On Card</label> <br>
<input id="namelk" type="text" placeholder="e.g.Preeti Bildani">
<br><br>
<input id="checkbox" style=" width:15px;" type="checkbox" /> <label id="checkboxText" for="">Save this card for future payments</label>
<br><br>
<div class="logoDiv"> We support</div>
<div>
<span> <img class="logoPay" src="https://consumer-app-images.pharmeasy.in/payment-icons/visa.png" alt=""></span>
<span> <img class="logoPay" src="https://consumer-app-images.pharmeasy.in/payment-icons/mastercard-logo.png" alt=""></span>
<span> <img class="logoPay" src="https://consumer-app-images.pharmeasy.in/payment-icons/rupay.png" alt=""></span>
<span> <img class="logoPay" src="https://consumer-app-images.pharmeasy.in/payment-icons/maestro-logo.png" alt=""></span>
<span> <img class="logoPay" src="https://consumer-app-images.pharmeasy.in/payment-icons/dinerCard.png" alt=""></span>
</div>
<br>
<a href="thanks-fornm-submit.html"> <button id="btnLK">Book & Pay</button></a>
<br>
<img class="safe_shild" src="https://assets.pharmeasy.in/web-assets/dist/f2189b34.svg" alt="safe-shield">
<label class="safe_text" for="">Your card details will be stored securely for your convenience. We do not store CVV.</label>
</div>
</div>
</div>
</body>
</html>
<script src="gateway.js">
</script>