forked from CenterForDigitalHumanities/DigiSig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.php
More file actions
21 lines (20 loc) · 681 Bytes
/
logout.php
File metadata and controls
21 lines (20 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include "include/constants.php";
session_start();
$_SESSION['userID'] = 1;
$_SESSION['fk_access'] = 1;
$_SESSION['fk_repository'] = 0;
$_SESSION['user_email'] = "DigiSig";
?>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="../DigiSig/include/lightbox/css/lightbox.css">
<link rel="stylesheet" href="../DigiSig/include/lightbox/css/digisigSkin.css.css">
<?php echo "<title>" . $title . "</title>" ?>
</head>
<body>
<p>You Have Successfully Logged Out.</p>
<a onclick="window.location='index.php'">Return To Home</a>
</body>
</html>