-
Notifications
You must be signed in to change notification settings - Fork 13
/
add_beneficiary.php
104 lines (66 loc) · 2.17 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
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
104
<?php
include "validate_customer.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
?>
<!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="add_beneficiary_action.php" method="post">
<div class="flex-container-form_header">
<h1 id="form_header">Please fill in beneficiary details...</h1>
</div>
<div class="flex-container">
<div class=container>
<label>First Name :</label><br>
<input name="fname" size="30" type="text" required />
</div>
<div class=container>
<label>Last Name :</b></label><br>
<input name="lname" size="30" type="text" required />
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Account No :</label>
<br>
<input name="acno" size="25" type="text" required />
</div>
</div>
<div class="flex-container">
<div class=container>
<label>Email-ID :</label><br>
<input name="email" size="30" type="text" required />
</div>
<div class=container>
<label>Phone No. :</b></label><br>
<input name="phno" size="30" type="text" 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>