-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_funds.php
83 lines (69 loc) · 2.33 KB
/
send_funds.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
77
78
79
80
81
82
83
<?php
include "validate_customer.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
if (isset($_GET['cust_id'])) {
$id = $_GET['cust_id'];
}
$sql0 = "SELECT * FROM customer WHERE cust_id=".$id;
$result0 = $conn->query($sql0);
$row0 = $result0->fetch_assoc();
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="customer_add_style.css">
</head>
<body>
<form class="add_customer_form" action="send_funds_action.php?cust_id=<?php echo $id ?>" method="post">
<div class="flex-container-form_header">
<h1 id="form_header">Transfer Funds</h1>
</div>
<div class="flex-container">
<div class=container>
<label>
To : <label id="info_label">
<?php echo $row0["first_name"]." ".$row0["last_name"] ?>
</label>
</label>
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Account No : <label id="info_label"><?php echo $row0["account_no"] ?></label></label>
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Enter Amount (in INR) :</label><br>
<input name="amt" size="24" type="text" required />
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Enter your password :</b></label><br>
<input name="password" size="24" type="password" required />
</div>
</div>
<div class="flex-container">
<div class="container">
<a href="/beneficiary.php" class="button">Go Back</a>
</div>
<div class="container">
<button type="submit">Submit</button>
</div>
<div class="container">
<button type="reset" class="reset" onclick="return confirmReset();">Reset</button>
</div>
</div>
</form>
<script>
function confirmReset() {
return confirm('Do you really want to reset?')
}
</script>
</body>
</html>