-
Notifications
You must be signed in to change notification settings - Fork 0
/
proceedPay.html
54 lines (41 loc) · 1.86 KB
/
proceedPay.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
<!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>Payment Details - ABGEC</title>
<!-- Favicon -->
<link href="./assets/img/abgecLogo/favicon.ico" rel="icon">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- CSS -->
<link rel="stylesheet" href="./assets/css/proceedPay.css">
</head>
<body>
<section id="payment">
<div class="thankyou first-section">
<p class="thankyou-text">Thank You for registering with us.</p>
</div>
<div class="second-section">
<h3 class="total-amount">Total Payable Amount: <i class="fa fa-rupee"></i> <span id="amount">
<script>document.write(localStorage.getItem("totalAmount"));</script>
</span></h3>
<div class="bank-details"></div>
<h2>Bank details</h2>
<h3 class="account-details">Bank Name: IDBI(Industrial Development Bank of India)</h3>
<h3 class="account-details">Account No.: 2149104000066477</h3>
<h3 class="account-details">IFSC Code: IBKL0002149</h3>
<div class="payment-methods">
<p> Payment Methods: Internet Banking, PhonePe, Paytm, Google Pay, UPI </p>
</div>
</div>
</div>
<div class="footer">
<h2 class="screenshot"> Please to ensure payment confirmation, share the transaction details along with
payment screenshot to whatsapp no . <strong>+91 89621-30661</strong></h2>
<h2>You will be updated in 24 hours.</h2>
</div>
</section>
</body>
</html>