-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLogout.php
More file actions
119 lines (102 loc) · 2.27 KB
/
Logout.php
File metadata and controls
119 lines (102 loc) · 2.27 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LogOut</title>
<style>
:root {
/**
* colors
*/
--chinese-violet_30: hsla(304, 14%, 46%, 0.3);
--chinese-violet: hsl(304, 14%, 46%);
--sonic-silver: hsl(208, 7%, 46%);
--old-rose_30: hsla(357, 37%, 62%, 0.3);
--ghost-white: hsl(233, 33%, 95%);
--light-pink: hsl(357, 93%, 84%);
--light-gray: hsl(0, 0%, 80%);
--old-rose: hsl(357, 37%, 62%);
--seashell: hsl(20, 43%, 93%);
--charcoal: hsl(203, 30%, 26%);
--white: hsl(0, 0%, 100%);
/**
* typography
*/
--ff-philosopher: 'Philosopher', sans-serif;
--ff-poppins: 'Poppins', sans-serif;
--fs-1: 4rem;
--fs-2: 3.2rem;
--fs-3: 2.7rem;
--fs-4: 2.4rem;
--fs-5: 2.2rem;
--fs-6: 2rem;
--fs-7: 1.8rem;
--fw-500: 500;
--fw-700: 700;
/**
* spacing
*/
--section-padding: 80px;
/**
* shadow
*/
--shadow-1: 4px 6px 10px hsla(231, 94%, 7%, 0.06);
--shadow-2: 2px 0 15px 5px hsla(231, 94%, 7%, 0.06);
--shadow-3: 3px 3px var(--chinese-violet);
--shadow-4: 5px 5px var(--chinese-violet);
/**
* radius
*/
--radius-5: 5px;
--radius-10: 10px;
/**
* clip path
*/
--polygon: polygon(100% 29%,100% 100%,19% 99%,0 56%);
/**
* transition
*/
--transition-1: 0.25s ease;
--transition-2: 0.5s ease;
--cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}
body{
background-color: var(--seashell);
}
.bth{
border: none;
background-color: var(--light-pink);
margin-top: 10px;
margin-left: 10px;
color: var(--ghost-white);
border-radius: 4px;
width: 150px;
text-align: center;
height: 30px;
cursor: pointer;
}
.bth:hover{
background-color: var(--chinese-violet);
transition: .3s;
}
.bth:active,
.bth:focus {
background-color: var(--light-pink);
color: var(--ghost-white);
box-shadow: 0 8px 24px 0 rgba(16, 39, 112, .2);
}
</style>
</head>
<body>
<?php
session_destroy();
header("Location: http://localhost:8080/Chapter%20Threads/");
?>
<!-- <a href="index.php" target="_self"><button class="bth">HOME</button></a> -->
</body>
</html>