-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignout.php
61 lines (57 loc) · 1.15 KB
/
signout.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
session_start();
?>
<html>
<style>
/* General button style (reset) */
.btn {
border: none;
font-family: inherit;
font-size: inherit;
color: inherit;
background: none;
cursor: pointer;
padding: 25px 80px;
display: inline-block;
margin: 19px 40px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 700;
outline: none;
position: relative;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.btn:after {
content: '';
position: absolute;
z-index: -1;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
/* Button 1 */
.btn-1 {
border: 3px solid #000;
color: #000;
background: #fff;
}
/* Button 1a */
.btn-1a:hover,
.btn-1a:active {
color: #fff;
background:#263238 ;
}
</style>
<body background="images/background.jpg" height="100">
<center>
<form action="index.php">
<button style="top: 150px" class="btn btn-1 btn-1a" id="myButton"><a>Click here to Login Again</a></button>
<?php
session_destroy();
?>
</form>
</center>
</body>
</html>