KLanding/config/set1.php

39 lines
2.2 KiB
PHP
Raw Normal View History

2016-01-11 23:58:19 +00:00
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<script type="text/javascript" src="../jscolor/jscolor.js"></script>
2016-01-29 11:20:36 +00:00
<script type="text/javascript">
function myfunction(){
localStorage.clear();
window.location.reload();
}
</script>
2016-01-11 23:58:19 +00:00
</head>
2015-12-12 23:17:13 +00:00
<?php include '../config.php';?>
2016-01-11 23:58:19 +00:00
<body>
2015-12-12 23:17:13 +00:00
<form action="write1.php" method="post">
Your Name: <input type="text" value="<?php echo $yourname ?>" name="YN" /><br />
Server Address: <input type="text" value="<?php echo $base ?>" name="YB" /><br />
<br />
Username: <input type="text" value="<?php echo $user ?>" name="user" /><br />
Password: <input type="text" value="<?php echo $pass ?>" name="pass" /><br />
<br />
2016-01-11 23:58:19 +00:00
Custom Background Colour:<input class="color" name="backgroundcolor" value="<?php echo $custombackground ?>"</td>
<br />
2015-12-12 23:17:13 +00:00
<br />
Services Widget Enabled: <input name="servicesvisible" id="id" type="checkbox" <?php if($servicesvisible > "0") echo "checked=checked; "; ?> /><br />
Clock Widget Enabled: <input name="clockvisible" id="id" type="checkbox" <?php if($clockvisible > "0") echo "checked=checked; "; ?> /><br />
KKnowledge Widget Enabled: <input name="kknowledgefeedvisible" id="id" type="checkbox" <?php if($kknowledgefeedvisible > "0") echo "checked=checked; "; ?> /><br />
2016-01-11 14:54:06 +00:00
Klips Widget Enabled: <input name="webclipfeedvisible" id="id" type="checkbox" <?php if($webclipfeedvisible > "0") echo "checked=checked; "; ?> /><br /><br />
Konvos Chatbox Enabled: <input name="konvoschat" id="id" type="checkbox" <?php if($konvoschat > "0") echo "checked=checked; "; ?> /><br />
2015-12-12 23:17:13 +00:00
Konvos Widget Enabled: <input name="konvosvisible" id="id" type="checkbox" <?php if($konvosvisible > "0") echo "checked=checked; "; ?> /><br />
<br />
Enable Kodi (MovieLib): <input name="kodivisible" id="id" type="checkbox" <?php if($kodivisible > "0") echo "checked=checked; "; ?> /><br />
<br />
2016-01-12 19:21:39 +00:00
Show Version : <input name="showversion" id="id" type="checkbox" <?php if($showversion > "0") echo "checked=checked; "; ?> /><br />
<br />
2016-01-29 11:20:36 +00:00
Reset Widgets : <input id="def_button" type="button" value="Set to Default" onclick="myfunction()"><br />
<br />
2015-12-12 23:17:13 +00:00
<input type="submit" name="submit" value="Update" />
2016-01-11 23:58:19 +00:00
</form>
</body>