-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.php
More file actions
58 lines (51 loc) · 999 Bytes
/
Copy pathlogout.php
File metadata and controls
58 lines (51 loc) · 999 Bytes
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
50
51
52
53
54
55
56
57
58
<?php
session_start();
include 'redir.php';
echo <<<_STYLE
<html><head>
<meta charset="utf-8">
<title>logout</title>
<style type="text/css">
body{
background-color: #34495e;
text-align: center;
height: 100vh;
width: 100%;
font-size: 18px;
}
h1{
font-family: 'impact', sans-serif;
font-size: 4em;
font-weight: bold;
text-align: center;
color: white;
}
h2{
font-family: 'optima',sans-serif;
font-size: 22px;
font-weight: bold;
text-align: center;
color: white;
}
p{
font-family: 'optima', sans-serif;
font-size: 30px;
line-height: 60px;
text-align: center;
color: white;
}
</style>
</head>
<body>
<h1>COMPLIB</h1>
<h2>Student Exam Number: [ B163919 ]</h2>
_STYLE;
$fn = $_SESSION['forname'];
echo <<<_MAIN1
<p>Goodby $fn. You have now exited the databse.<br>
You can clike <a href="complib.php" style="color:#fbc531">here</a> to return to the login page.
</p>
</body>
</html>
_MAIN1;
?>