-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserLogout.php
39 lines (35 loc) · 1.12 KB
/
userLogout.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
<?php
include('template/init.php');
include('template/function.php');
?><!DOCTYPE html>
<html lang="zh">
<head>
<?php
include('template/head.php');
?>
</head>
<body>
<?php include('template/menu.php'); ?>
<div class="container marketing">
<hr class="featurette-divider">
<br /><br />
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<?php
session_destroy();
?>
<strong><h3>您已經登出,即將轉入首頁!</h3></strong>
</div>
<meta http-equiv="refresh" content="2; url=index.php">
<hr>
<footer>
<p>© Company 2013</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>