-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogout.php
More file actions
25 lines (25 loc) · 715 Bytes
/
logout.php
File metadata and controls
25 lines (25 loc) · 715 Bytes
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
<?php
session_start();
$_SESSION["login"] = false;
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<title>Logout Successful</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css">
<link href="css/templatemo_style.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="/dbms/logo/logo.png">
</head>
<body>
<body class="templatemo-bg-gray">
<?php
echo "<div id=\"try\">
<h1 class=\"margin-bottom-15\">Logout Successful...</h1> <br>
<a href=\"login.html\"> <center> Click here</a> to login.
</div>";
?>
</body>
</html>