-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
29 lines (25 loc) · 996 Bytes
/
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
<?php
require_once __DIR__.'/mvid_ai.php';
setcookie_73('mv-session-id', '', ['expires' => time() + 86400, 'path' => '/', 'secure' => true, 'samesite' => 'None']);
setcookie_73('access-hmac', '', ['expires' => time() + 86400, 'path' => '/', 'secure' => true, 'samesite' => 'None']);
?>
<!DOCTYPE html>
<html lang="da">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Grammateket Logout</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Oswald:300,700|Open+Sans:400,300">
<link rel="stylesheet" href="static/login.css?<?=filemtime(__DIR__.'/static/login.css');?>">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
<div class="midmid"><div>Du er nu logget ud og kan lukke dette vindue.</div></div>
<script type="text/javascript">
$(function() {
window.close();
});
</script>
</body>
</html>