-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexit.php
31 lines (31 loc) · 835 Bytes
/
exit.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
<?php include("./includes/init.php");
unset($_SESSION['user'])
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("./includes/head.php"); ?>
<title>Déconnexion</title>
</head>
<body>
<?php include("./includes/topbar.php"); ?>
<div class="container" style="padding-top : 20px;">
<div class="col-md-offset-4 col-sm-4">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Déconnecté</h3>
</div>
<div class="panel-body">
Vous êtes désormais déconnecté !
</div>
</div>
</div>
</div>
<div class="container" style="text-align: center;">
<a href="./" class="btn btn-success btn-lg" role="button">Retour à l'accueil</a>
</div>
<?php include("./includes/js.php"); ?>
<script type="text/javascript">
</script>
</body>
</html>