forked from g33kyrash/Online-Banking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_beneficiary.php
56 lines (45 loc) · 1.91 KB
/
add_beneficiary.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
<?php
session_start();
if(!isset($_SESSION['customer_login']))
header('location:index.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Add Beneficiary</title>
<link rel="stylesheet" href="newcss.css">
<style>
.content_customer table,th,td {
padding:6px;
border: 1px solid #2E4372;
border-collapse: collapse;
text-align: center;
}
.content_customer td{
}
</style>
</head>
<?php include 'header.php' ?>
<div class='content_customer'>
<?php include 'customer_navbar.php'?>
<div class="customer_top_nav">
<div class="text">Welcome <?php echo $_SESSION['name']?></div>
</div>
<br><br>
<form action='add_beneficiary_process.php' method='post'>
<br><br>
<h3 style="text-align:center;color:#2E4372;"><u>Add Beneficiary</u></h3>
<table align="center">
<tr><td><span class="heading">Payee Name: </span></td><td><input type='text' name='name' required></td></tr>
<tr><td><span class="heading">Account No: </span></td><td><input type='text' name='account_no' required></td></tr>
<tr><td><span class="heading">Select Branch: </span></td><td><select name='branch_select' required>
<option value='KOLKATA'>Kolkata</option>
<option value='DELHI'>Delhi</option>
<option value='BANGALORE'>Bangalore</option>
</select></td></tr>
<tr><td><span class="heading">Ifsc Code: </span></td><td><input type='text' name='ifsc_code' required></td></tr> </table>
<table align="center"> <tr><td><input type='submit' name='submitBtn' value='Add Beneficiary' class="addstaff_button">
</table>
</form>
<?php include 'footer.php'?>