mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-04-09 16:33:36 +00:00
new Webinterface
This commit is contained in:
parent
1232d497ff
commit
2e05b29efe
62 changed files with 4055 additions and 81 deletions
43
www/show_fms.php
Normal file
43
www/show_fms.php
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Escape Velocity by HTML5 UP
|
||||
html5up.net | @n33co
|
||||
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
||||
-->
|
||||
|
||||
<?php
|
||||
session_start();
|
||||
?>
|
||||
|
||||
<?php
|
||||
if(!isset($_SESSION["username"]))
|
||||
{
|
||||
echo "Bitte erst <a href=\"login.html\">einloggen</a>";
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
<?php
|
||||
require_once ("config.php");
|
||||
require_once ("tpl/parser.php");
|
||||
|
||||
require_once ("tpl/mysql.class.php");
|
||||
$db = new Database($dbhost, $dbuser, $dbpassword, $database, 1); //Show Error = 1!
|
||||
?>
|
||||
|
||||
|
||||
<?php
|
||||
|
||||
include("tpl/a_header.php");
|
||||
?>
|
||||
<!-- Highlights -->
|
||||
<div class="wrapper style3">
|
||||
<div class="title">FMS</div>
|
||||
<div id="highlights" class="container" style="">
|
||||
<?php
|
||||
include("tpl/fms.php");
|
||||
include("tpl/a_footer.php");
|
||||
?>
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue