-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
72 lines (70 loc) · 2.04 KB
/
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
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
<?php
session_start();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<title>Log Out</title>
<link href="https://fonts.googleapis.com/css?family=Caveat" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="icon" href="_images/pokeball.jpg">
<style>
body, html {
font-family: "Caveat", cursive;
color: white;
text-align: center;
background-color: black;
margin-left: auto;
margin-right: auto;
}
header, footer {
background-color: #262728;
font-size: 16px;
padding-top: 10px;
padding-bottom: 10px;
}
#search-button {
font-weight: bold;
background-color: #008cba;
color: white;
border-radius: 40%;
transition: 0.4s;
}
#search-button:hover {
background-color: white;
color: black;
border: 2px solid #008cba;
}
</style>
</head>
<body>
<header>
<div class="container">
<nav class="main nav">
<img class="float-left" src="_images/mew3.jpg" alt = "Mew0" style="height: 50px;"/>
<a class="nav-link" href="index.php">Pokédex</a>
<a class="nav-link" href="items.php">Items</a>
<a class="nav-link" href="about.php">About</a>
<a class="nav-link" href="http://303.itpwebdev.com/~thomasjf/student_page.html">Student Page</a>
</nav>
</div> <!-- .container -->
</header>
<div class="container">
<div class="row mt-4">
<div class="col-12 text-center">
<h2>Logged Out</h2>
<img src="_images/pika.jpg" alt = "Starters2" style="width: 80%;"/><br><br>
<div class="col-12">You are now logged out.</div>
<div class="col-12 mt-3">You can go to <a href="index.php">home page</a> or <a href="login.php">log in</a> again.</div>
</div>
</div>
</div> <!-- .container -->
<hr><footer>
<p style="color:white"> A website designed by Thomas Finn </p>
<a href="#">Back to Top</a>
</footer>
</body>
</html>