-
Notifications
You must be signed in to change notification settings - Fork 13
/
auto_delete_beneficiary.php
63 lines (45 loc) · 1.46 KB
/
auto_delete_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
<?php
/* Avoid multiple sessions warning
Check if session is set before starting a new one. */
if(!isset($_SESSION)) {
session_start();
}
include "validate_customer.php";
include "connect.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
$_SESSION['auto_delete_benef'] = false;
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="action_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<p id="info" style="font-size:36px;">
<b>One or more of your beneficiaries have been deleted ! :(</b><br>
</p>
</div>
<div class="flex-item">
<p id="info" style="margin-top:-40px;">
<br>For security reasons if sensitive details of your beneficiary like
Phone No, Account No, Email-ID, etc have been changed <b>OR</b>
if the
beneficiary no longer exists, they get deleted from your list of
beneficiaries automatically.
<br><br>
Please add beneficiary details again. :)
</p>
</div>
<?php $conn->close(); ?>
<div class="flex-item">
<a href="beneficiary.php" class="button">Go to Transfer Funds</a>
</div>
</div>
</body>
</html>