-
Notifications
You must be signed in to change notification settings - Fork 1
/
logout.php
executable file
·46 lines (39 loc) · 1.16 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Logout</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css-hw2.css" title="default style">
</head>
<body id="logoutPage">
<div id="wrapper">
<div id="wrapperHeader">
<div id="header">
<img src="images/header.jpg" alt="logo">
</div>
</div>
<div id="masthead">
<div id="navContainer">
<div id="navigation">
<ul>
<li id="homePageLink"><a href="index.html">Home</a></li>
<li id="loginPageLink"><a href="login.php">Login</a></li>
<li id="playPageLink"><a href="play.php">Play</a></li>
<li id="learnPageLink"><a href="learn.html">Learn</a></li>
<li id="matchesPageLink"><a href="matches.php">Game database</a></li>
<li id="aboutPageLink"><a href="about.html">About</a></li>
<li id="logoutPageLink"><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
</div>
<div id="content">
<?php
session_start();
$_SESSION['login'] = "";
?>
<p>You are logged out! Comeback soon!</p>
</div>
</div>
</body>
</html>