This commit is contained in:
Karl Hudgell 2016-01-15 20:50:27 +00:00
parent a5b7456f3f
commit 65ccd69737
7 changed files with 73 additions and 1 deletions

View File

@ -33,7 +33,7 @@ indicateSelected(formref.switchcontrol)
<?php
$username = "$user";
$password = "$pass";
$nonsense = "superkey2";
$nonsense = "superkey";
if (isset($_COOKIE['PrivatePageLogin'])) {
if ($_COOKIE['PrivatePageLogin'] == md5($password.$nonsense)) {

View File

@ -15,6 +15,14 @@ background-color: black;
color: white;
}
#config {
position: fixed;
bottom: 0;
width: 100%;
text-align: right;
color: black;
}
#maincontent{
position: fixed;
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
@ -114,4 +122,9 @@ div.head {
font-size: 16pt;
color: white;
}
div#config a:link { color: black; }
div#config a:visited { color: black; }
div#config a:hover { color: black; }
div#config a:active { color: black; }
</style>

View File

@ -16,6 +16,19 @@ background-color: #021AB0;
color: white;
}
div#config a:link { color: #021AB0; }
div#config a:visited { color: #021AB0; }
div#config a:hover { color: #021AB0; }
div#config a:active { color: #021AB0; }
#config {
position: fixed;
bottom: 0;
width: 100%;
text-align: right;
color: #021AB0;
}
#maincontent{
position: fixed;
top: 40px; /*Set top value to HeightOfTopFrameDiv*/

View File

@ -117,6 +117,20 @@ div.version {
color: <?php echo $custombackground; ?>;
}
#config {
position: fixed;
bottom: 0;
width: 100%;
text-align: right;
color: <?php echo $custombackground; ?>;
}
div#config a:link { color: <?php echo $custombackground; ?>; }
div#config a:visited { color: <?php echo $custombackground; ?>; }
div#config a:hover { color: <?php echo $custombackground; ?>; }
div#config a:active { color: <?php echo $custombackground; ?>; }
div.head {
font-size: 16pt;
color: white;

View File

@ -108,4 +108,18 @@ div.head {
font-size: 16pt;
color: white;
}
#config {
position: fixed;
bottom: 0;
width: 100%;
text-align: right;
color: red;
}
div#config a:link { color: red; }
div#config a:visited { color: red; }
div#config a:hover { color: red; }
div#config a:active { color: red; }
</style>

View File

@ -15,6 +15,14 @@ background-color: white;
color: white;
}
#config {
position: fixed;
bottom: 0;
width: 100%;
text-align: right;
color: white;
}
#maincontent{
position: fixed;
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
@ -108,4 +116,9 @@ div.head {
font-size: 16pt;
color: black;
}
div#config a:link { color: white; }
div#config a:visited { color: white; }
div#config a:hover { color: white; }
div#config a:active { color: white; }
</style>

View File

@ -126,6 +126,11 @@ if ($customfeed3visible > "0") {
$colour = $_POST['CustColor'];
echo $colour;
?>
</div>
<div id="config">
<?php echo "<a href=\"\config\" target=\"_blank\">Config</a>"; ?>
</div>
</div>
</body>