.
*/
include("./include/include.php");
admin_header();
if( isset($_SESSION['privstatementagree']) && $_SESSION['privstatementagree']=="ask" ) {
// user should first agree to privacy statement
echoln("
Privacy statement
");
echoln("To continue, you'll have to agree to the privacy statement:");
echoln("
");
echoln("
");
include("./include/privacy.php");
echoln("
");
echoln("
");
echoln("");
}else {
echoln("Welcome to the admin pages.");
}
admin_footer();
?>