96 lines
2.4 KiB
PHP
96 lines
2.4 KiB
PHP
<?php
|
|
session_start();
|
|
require('dbConnect.php');
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<title>FriendsBook</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<!-- Include the header-->
|
|
|
|
<?php
|
|
if(isset($_SESSION['user'])){
|
|
include('segments/_headerSession.php');
|
|
} else {
|
|
include('segments/_header.php');
|
|
}
|
|
|
|
|
|
?>
|
|
<?php #include('segments/_indexTestLoginVals.php'); ?><!-- For forms testing -->
|
|
|
|
<?php
|
|
$page = '_404.html';
|
|
$p = '';
|
|
if(isset($_GET['page'])){$p = $_GET['page'];}
|
|
|
|
if($p == '' || $p == 'home'){
|
|
$page = '_home.php';
|
|
}
|
|
|
|
if($p == 'newEntry'){
|
|
$page = '_entryForm.php';
|
|
}
|
|
|
|
if($p == 'myFriendsBook'){
|
|
$page = '_myFriendsBook.php';
|
|
}
|
|
|
|
if($p == 'login'){
|
|
if(isset($_SESSION['user'])){
|
|
header('Location: index.php');
|
|
} else {
|
|
$page = '_login.php';
|
|
}
|
|
}
|
|
|
|
if($p == 'register'){
|
|
$page = '_register.php';
|
|
}
|
|
|
|
require('segments/'.$page);
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="content">
|
|
<br><span> Session User: <?php echo $_SESSION['user']; ?> </span>
|
|
</div>
|
|
|
|
<!-- Zum testen der Daten die ueber die Modals reinkommen -->
|
|
|
|
|
|
|
|
<!-- Include the footer-->
|
|
<?php include('segments/_footer.html'); ?>
|
|
|
|
<!-- Optional JavaScript -->
|
|
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
|
|
|
|
<!-- import contentloader-->
|
|
<script src="js/contentloader.js"></script>
|
|
</body>
|
|
</html>
|