mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
42 lines
692 B
PHP
42 lines
692 B
PHP
<?php
|
|
require_once("include/login_functions.php");
|
|
?>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/screen.css">
|
|
<script src="js/jquery-3.2.1.min.js" ></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="kopf">
|
|
<?PHP
|
|
include "include/kopf.php";
|
|
?>
|
|
</div>
|
|
|
|
<div id="inhalt_links">
|
|
<?PHP
|
|
if(isLoggedIn()){
|
|
include "include/navigation.php";
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
|
|
<div id="inhalt_mitte">
|
|
<?PHP
|
|
if(isLoggedIn()){
|
|
if(isset($_GET["inhalt_mitte"])){
|
|
include(htmlspecialchars($_GET["inhalt_mitte"], ENT_QUOTES, 'UTF-8'));
|
|
}
|
|
else{
|
|
include("include/home.php");
|
|
}
|
|
}else{
|
|
include("include/login_form.php");
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|