-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_home.php
50 lines (47 loc) · 1.58 KB
/
admin_home.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
<?php
include "validate_admin.php";
include "header.php";
include "user_navbar.php";
include "admin_sidebar.php";
include "session_timeout.php";
?>
<!DOCTYPE html>
<html>
<head>
<title>SAV BANK</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="admin_home_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<h1 id="customer">
Welcome Admin !
</h1>
<p id="customer" style="max-width:800px">
From here you can manage all of core Internet Banking settings.
You can add/manage customers, view their transactions, edit their
details and even delete them. You can also post news on the website.
<br>Please keep in mind that with big power comes big responsibility.
Therefore please do not misuse your admin control to create trouble.
<br><br>
contact developer trough live chat if u have any problem.
</p>
</div>
</div>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5fa8f9170a68960861bd0329/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>
<?php include "easter_egg.php"; ?>