-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerate.php
More file actions
39 lines (31 loc) · 720 Bytes
/
Copy pathGenerate.php
File metadata and controls
39 lines (31 loc) · 720 Bytes
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
<style type="text/css">
body {height: 100%;
}
</style>
<body>
<div id="wrapper">
<?php
if(!isset($_SESSION))
session_start();
if(!isset($_SESSION['loggedin'])){
if($_SESSION['dispEng'])
echo "Login please.";
else
echo "Inscrivez-vous s'il vous plait.";
header('Refresh: 2; URL = index.php');
}
else{
echo '<link href="css/bgstyling.css" rel="stylesheet"/>';
//Page Info
$page_name = "error 404 - Main page";
$page_keywords = "Error404";
$page_description = "Error404";
$page_author = "Error404";
//Construct Page
include 'PageBuilder/navbar.php';
include 'FrontEnd/Generate.php';
include 'PageBuilder/header.php';
include 'PageBuilder/footer.php';
//include 'FrontEnd/usersPage.php';
}
?>