-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.php
44 lines (37 loc) · 1.23 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
<?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">
<title>Simple Blog - Codepolitan</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Dependencies -->
<script src="js/jquery-3.4.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
</head>
<body class="bg-light">
<main role="main">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="card shadow mt-4">
<div class="card-body text-center">
<h4>Logout successfuly</h4>
<a href="index.php" class="btn btn-outline-primary">Go to homepage</a>
<a href="login.php" class="btn btn-primary">Re-login</a>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>