2015-07-13 23:33:36 +02:00
|
|
|
<!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
|
2017-08-23 23:35:22 +02:00
|
|
|
if(($_SESSION["username"])!="admin")
|
2015-07-13 23:33:36 +02:00
|
|
|
{
|
|
|
|
|
echo "Sie sind nicht berechtigt fuer diesen Bereich";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
// Parse with sections
|
|
|
|
|
include("tpl/a_header.php");
|
|
|
|
|
?>
|
|
|
|
|
<!-- Highlights -->
|
|
|
|
|
<div class="wrapper style3">
|
|
|
|
|
<div class="title">Einstellungen</div>
|
|
|
|
|
<div id="highlights" class="container" style="">
|
2017-08-23 23:35:22 +02:00
|
|
|
<!--
|
2015-07-13 23:33:36 +02:00
|
|
|
<tr>
|
|
|
|
|
<td>Filter Range Start:</td><td>
|
|
|
|
|
<input type="text" size="24" maxlength="50" value="
|
|
|
|
|
<?php
|
|
|
|
|
$ini_array = parse_ini_file("config.ini");
|
|
|
|
|
echo($ini_array['filter_range_start']);
|
|
|
|
|
?>
|
|
|
|
|
"></td></tr><tr>
|
|
|
|
|
<td>Filter Range End: </td><td>
|
|
|
|
|
<input type="text" size="24" maxlength="50" value="
|
|
|
|
|
<?php
|
|
|
|
|
$ini_array = parse_ini_file("config.ini");
|
|
|
|
|
echo($ini_array['filter_range_end']);
|
|
|
|
|
?>
|
|
|
|
|
"></td>
|
2017-08-23 23:35:22 +02:00
|
|
|
</tr>-->
|
2015-07-13 23:33:36 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="copyright">
|
|
|
|
|
<ul>
|
|
|
|
|
<li style="color:grey">© BOSWatch</li><li style="color:grey">Design: <a href="http://html5up.net">HTML5 UP</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
2017-08-23 23:35:22 +02:00
|
|
|
</html>
|