mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
41 lines
575 B
PHP
41 lines
575 B
PHP
|
<?php
|
||
|
require_once("login_functions.php");
|
||
|
?>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="screen.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div id="kopf">
|
||
|
<?PHP
|
||
|
include "kopf.inc.php";
|
||
|
?>
|
||
|
</div>
|
||
|
|
||
|
<div id="inhalt_links">
|
||
|
<?PHP
|
||
|
if(isLoggedIn()){
|
||
|
include "navigation.inc.php";
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div id="inhalt_mitte">
|
||
|
<?PHP
|
||
|
if(isLoggedIn()){
|
||
|
if(isset($_GET["inhalt_mitte"])){
|
||
|
include($_GET["inhalt_mitte"]);
|
||
|
}
|
||
|
else{
|
||
|
include("home.inc.php");
|
||
|
}
|
||
|
}else{
|
||
|
include("login_form.php");
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|