size not supported for checkboxes
[misc/kostenrechnung] / index.php
index 819fba0..688a57e 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,23 +1,35 @@
 <?php
-require_once('config.php');
-require_once('lib/general.php');
+require_once('init.php');
+require_once('lib/menu.php');
 
 $jsfiles = array('lib/json_parse.js');
 $jscode = '';
+$menu = menu();
 $html = process();
-
-$html .= debug_info();
+$debug = debug_info();
 
 ?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="de">
 <head>
-<title>Kostenleistungsrechnung</title>
+<title>Kostenleistungsrechnung Friesoyther Wasseracht</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta http-equiv="refresh" content="14400; URL=./?logout=true ">
 <?=load_js($jsfiles, $jscode);?>
 <link href="stylesheet.css" rel="stylesheet" type="text/css">
+<link href="style.css" rel="stylesheet" type="text/css">
+<link href="dropdown.css" rel="stylesheet" type="text/css">
 </head>
 <body>
+<div id="header">
+<h1>Kostenrechnung Friesoyther Wasseracht</h1>
+<?=$menu; ?>
+</div>
+
+<div class="content">
 <?=$html; ?>
+</div>
+
+<?=$debug; ?>
 </body>
 </html>