-
Notifications
You must be signed in to change notification settings - Fork 0
/
Credit.html
103 lines (103 loc) · 4.27 KB
/
Credit.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
<!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">
<title>Document</title>
<script src="https://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles/Credit.css">
</head>
<body>
<div id="navbar">
<div id="nav">
<a href="index.html">
<div id="left_div">
<img src="https://www.revv.co.in/grapheneImages/newopen/logo.svg">
<div >Sanitised. Safe</div>
</div>
</a>
</div>
</div>
<div id="payment-Div">
<div id="box-shadow">
<div id="pay-heading">
<div id="sent">
<div id="title">Total amount to be paid</div>
<div id="sub-title">(Inclusive of all taxes)</div>
</div>
<div id="amount-paid"></div>
</div>
<div id="nextpay-div">
<div id="credit-card">
<div id="clickHere">
<div>
<img src="https://www.revv.co.in/imgs/payment/web_cc_card.png">
<b>Credit card</b>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
<form>
<div class="fillinginput">
<label class="doSmall">Card number:</label>
<input oninput="showWarningCard()" type="text" id="mycard-number" placeholder="xxxx xxxx xxxx xxxx"/>
</div>
<div class="fillinginput">
<label class="doSmall">Card holder name:</label>
<input type="text" id="mycard-name" placeholder="eg. Sahil Prajapati"/>
</div>
<div id="onlyfilling">
<div>
<label class="doSmall">Expiry Date:</label>
<input oninput="showWarningDate()" type="text" id="Expiry-date" placeholder="MM/YY"/>
</div>
<div>
<label class="doSmall">CVV code:</label>
<input type="text" id="CVV" placeholder="3 digits"/>
</div>
</div>
<button id="finalPay">Pay Now</button>
</form>
</div>
<div id="debit-card" class="sameFunc">
<div>
<img src="https://www.revv.co.in/imgs/payment/web_cc_card.png">
<b>Debit card</b>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
<div id="paytm">
<img src="https://www.revv.co.in/imgs/payment/web_paytm.png">
<a>Link Account</a>
</div>
<div id="amazon">
<img src="https://www.revv.co.in/imgs/payment/web_amazonpay.png">
<a>Link Account</a>
</div>
<div id="net-bank" class="sameFunc">
<div>
<img src="https://www.revv.co.in/imgs/payment/web_net_banking.png">
<b>Net banking</b>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
<div id="emi" class="sameFunc">
<div>
<img src="https://www.revv.co.in/imgs/payment/web_emi.png">
<b>EMI</b>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
<div id="upi" class="sameFunc">
<div>
<img src=" https://www.revv.co.in/imgs/payment/web_upi.png">
<b>UPI</b>
</div>
<i class="fa-solid fa-chevron-down"></i>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./script/Credit.js"></script>