-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathlogout.php
More file actions
28 lines (25 loc) · 858 Bytes
/
logout.php
File metadata and controls
28 lines (25 loc) · 858 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
26
27
28
<?php
/*Yeah! Log out process, unsets and destroys session variables */
session_start();
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Logout-CTC</title>
<?php include 'css/css.html'; ?>
</head>
<body>
<!--Yeah! Display Site Logo at The Top-->
<a href="http://www.tonycletus.com"><img src="img/logo.png"></a>
<div class="form">
<h1>Thanks for visiting Our Site</h1>
<h5 style="color: white" ><?= 'Drop a' . '<a href="http://www.tonycletus.com/contact.php">' . ' feedback' . '</a>' . ' so we can serve you much better' ?></h5>
<p><?= 'You have been logged out!'; ?></p>
<!--Yeah! We navigate back to Home page of the site-->
<a href="index.php"><button class="button button-block"/>Home</button></a>
</div>
</body>
</html>