-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlogout.php
More file actions
49 lines (37 loc) · 1.26 KB
/
logout.php
File metadata and controls
49 lines (37 loc) · 1.26 KB
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
<? ob_start(); session_start(); unset($_SESSION['USN']); session_destroy();?>
<!DOCTYPE HTML>
<? $level = "9001"?>
<?require('./includes/html1.php');?>
<header>
<h1>You have been logged out</h1>
</header>
<?require('./includes/html_incorrect.php');?>
<hr/>
<footer>
<ul class="icons">
<li><a href="index.php" class="fa-history" title="Leaderboard">Login</a></li>
<a href="index.php"><p>RE-LOGIN</p></a>
</ul>
</footer>
<hr/>
<footer>
<ul class="icons">
<li><a href="leaderboard.php" class="fa-child" title="Leaderboard" target="_blank">Leaderboard</a></li>
<li><a href="rules.php" class="fa-asterisk" title="Rules" target="_blank">Rules</a></li>
<li><a href="https://www.facebook.com/" class="fa-question" title="Hints" target="_blank">Hints</a></li>
</ul>
</footer>
</section>
<footer id="footer">
</footer>
</div>
<!--[if lte IE 8]><script src="assets/js/respond.min.js"></script><![endif]-->
<script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script>
</body>
</html>
<? ob_flush(); ?>