-
Notifications
You must be signed in to change notification settings - Fork 0
/
logout.php
24 lines (21 loc) · 874 Bytes
/
logout.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
<!doctype html>
<html>
<head>
<title>Reynholm Industries</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="stylesheet.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<img src="reynholm.jpg" height="5%" width="5%">
<?php
echo "<div>Goodbye! ";
echo "You have successfully logged out. Please <a href='who.html'>click here to login again</a></div>";
session_start();
if (isset($_SESSION['clientID'])) $_SESSION['clientID']="";
if (isset($_SESSION['adminID'])) $_SESSION['adminID']="";
if (isset($_SESSION['CDL'])) $_SESSION['CDL']="";
?>
</body>
</html>