-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogout.php
43 lines (40 loc) · 919 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
session_start();
session_destroy();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
h3 {
text-align: center;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: transparent;
color: black;
text-decoration: none;
border-radius: 4px;
border: 2px solid #ccc;
transition: color 0.5s;
}
.btn:hover {
background-color: green;
}
</style>
</head>
<body>
<h3>You have logged out.</h3><br><br>
<a href="index.php" class="btn btn-outline-light">Back to Home Page</a>
</body>
</html>