-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (37 loc) · 833 Bytes
/
index.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
<?php
session_name('SESSION');
session_start();
if(!isset($_SESSION['pseudo']))
{
header("location: login.php");
exit();
}
include('page/connexionbd.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include("page/head.php"); ?>
</head>
<body>
<div class="container-scroller">
<?php include("page/header.php"); ?>
<div class="container-fluid page-body-wrapper">
<?php include("page/leftsidebar.php"); ?>
<div class="main-panel">
<div class="content-wrapper">
<?php include("page/containt.php"); ?>
</div>
<footer class="footer">
<?php include("page/footer.php"); ?>
</footer>
<!-- partial -->
</div>
<!-- main-panel ends -->
</div>
<!-- page-body-wrapper ends -->
</div>
<!-- container-scroller -->
<?php include("page/jsstyle.php"); ?>
</body>
</html>