-
Notifications
You must be signed in to change notification settings - Fork 0
/
logout.php
33 lines (30 loc) · 1.35 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
<?php
require_once("./include/login_member.php");
$login = new Loginmember();
$login->logout();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"><head>
<title>TASK 1 - API interaction </title>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<meta http-equiv="Content-Type" content="text/html"; charset="utf-8"/>
<link rel="shortcut icon" href="'.$basedir.'images/Logoicon.ico" />
<link href="css/contentstyle.css" rel="stylesheet" type="text/css"/>
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<!-- Mobile Specific Metas================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- PT Sans -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<!-- Crete Roung -->
<link href="http://fonts.googleapis.com/css?family=Crete+Round&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/scripts/jquery-1.7.1.min.js"></script>
</head>
<body>
<fieldset>
<legend>Logout</legend>
<b>You have logged out!</b><br/>
<br/><a href="index.php"><u>Log me in</u></a>
</fieldset>
</body>
</html>