Files
PVM/public_html/user_settings.php
2021-10-20 16:32:11 +02:00

31 lines
734 B
PHP

<?
session_start();
include "functions.php";
require_once "include_login.php";
include "config.php";
include "include/module.php";
include Controller::current_mainClasspath();
include Controller::current_gestpath_include("ajax.php");
?>
<!DOCTYPE html>
<!--html manifest="manifest.appcache"-->
<html>
<head>
<? include pvm_tagHead; ?>
</head>
<body>
<? include pvm_headerNavbar; ?>
<div id="content">
<div><?
include pvm_navTab;
if (!PVM\CurrentModule::isAuthorizedToCurrentUser()) {
include pvm_unauthorized;
} else {
include Controller::current_gestpath_mainPage();
} ?>
</div>
</div>
<? include pvm_footerMinimal; ?>
</body>
</html>