51 lines
3.0 KiB
PHP
51 lines
3.0 KiB
PHP
|
<?php include '../config.php';?>
|
||
|
<form action="write5.php" method="post">
|
||
|
<div style="width:100%;"> <!-- Main Div -->
|
||
|
<div style="float:left; width:50%;">
|
||
|
Set Server Upstate Monitor <br />
|
||
|
<br />
|
||
|
Server Status Enabled: <input name="serverstatusvisible" id="id" type="checkbox" <?php if($serverstatusvisible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
<br />
|
||
|
Server 1 Enabled: <input name="server1visible" id="id" type="checkbox" <?php if($server1visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Server 1 Name: <input type="text" value="<?php echo $server1name ?>" name="server1name" /><br />
|
||
|
Server 1 URL: <input type="text" value="<?php echo $server1url ?>" name="server1url" /><br />
|
||
|
<br />
|
||
|
Server 2 Enabled: <input name="server2visible" id="id" type="checkbox" <?php if($server2visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Server 2 Name: <input type="text" value="<?php echo $server2name ?>" name="server2name" /><br />
|
||
|
Server 2 URL: <input type="text" value="<?php echo $server2url ?>" name="server2url" /><br />
|
||
|
<br />
|
||
|
Server 3 Enabled: <input name="server3visible" id="id" type="checkbox" <?php if($server3visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Server 3 Name: <input type="text" value="<?php echo $server3name ?>" name="server3name" /><br />
|
||
|
Server 3 URL: <input type="text" value="<?php echo $server3url ?>" name="server3url" /><br />
|
||
|
<br />
|
||
|
Server 4 Enabled: <input name="server4visible" id="id" type="checkbox" <?php if($server4visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Server 4 Name: <input type="text" value="<?php echo $server4name ?>" name="server4name" /><br />
|
||
|
Server 4 URL: <input type="text" value="<?php echo $server4url ?>" name="server4url" /><br />
|
||
|
|
||
|
</div>
|
||
|
<div style="float:right; width:50%; ">
|
||
|
Custom RSS Feeds <br />
|
||
|
<br />
|
||
|
Feed 1 Enabled: <input name="customfeed1visible" id="id" type="checkbox" <?php if($customfeed1visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Feed 1 Name: <input type="text" value="<?php echo $customfeed1name ?>" name="customfeed1name" /><br />
|
||
|
Feed 1 URL: <input type="text" value="<?php echo $customfeed1url ?>" name="customfeed1url" /><br />
|
||
|
<br />
|
||
|
Feed 2 Enabled: <input name="customfeed2visible" id="id" type="checkbox" <?php if($customfeed2visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Feed 2 Name: <input type="text" value="<?php echo $customfeed2name ?>" name="customfeed2name" /><br />
|
||
|
Feed 2 URL: <input type="text" value="<?php echo $customfeed2url ?>" name="customfeed2url" /><br />
|
||
|
<br />
|
||
|
Feed 3 Enabled: <input name="customfeed3visible" id="id" type="checkbox" <?php if($customfeed3visible > "0") echo "checked=checked; "; ?> /><br />
|
||
|
Feed 3 Name: <input type="text" value="<?php echo $customfeed3name ?>" name="customfeed3name" /><br />
|
||
|
Feed 3 URL: <input type="text" value="<?php echo $customfeed3url ?>" name="customfeed3url" /><br />
|
||
|
<br />
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<div>
|
||
|
<input type="submit" name="submit" value="Update" />
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</form>
|