48 lines
3.1 KiB
PHP
48 lines
3.1 KiB
PHP
<?php include '../config.php';?>
|
|
|
|
<form action="write3.php" method="post">
|
|
<div style="width:100%;"> <!-- Main Div -->
|
|
<div style="float:left; width:50%;">
|
|
FTP Enabled: <input name="ftpvisible" id="id" type="checkbox" <?php if($ftpvisible > "0") echo "checked=checked; "; ?> /><br />
|
|
FTP Port: <input type="text" value="<?php echo $ftpport ?>" name="ftpport" /><br />
|
|
FTP Name: <input type="text" value="<?php echo $ftpname ?>" name="ftpname" /><br />
|
|
FTP Pic: <input type="text" value="<?php echo $ftppicname ?>" name="ftppicname" /><br />
|
|
<br />
|
|
Torrent Enabled: <input name="torrentvisible" id="id" type="checkbox" <?php if($torrentvisible > "0") echo "checked=checked; "; ?> /><br />
|
|
Torrent Type : <input type="radio" name="torrenttype" value="1" <?php if($torrenttype < "2") echo "checked=checked; "; ?>>uTorrent / <input type="radio" name="torrenttype" value="2" <?php if($torrenttype > "1") echo "checked=checked; "; ?>>Transmission<br />
|
|
Torrent Port: <input type="text" value="<?php echo $torrentport ?>" name="torrentport" /><br />
|
|
Torrent Name: <input type="text" value="<?php echo $torrentname ?>" name="torrentname" /><br />
|
|
Torrent Pic: <input type="text" value="<?php echo $torrentpicname ?>" name="torrentpicname" /><br />
|
|
<br />
|
|
Madsonic Enabled: <input name="madsonicvisible" id="id" type="checkbox" <?php if($madsonicvisible > "0") echo "checked=checked; "; ?> /><br />
|
|
Madsonic Port: <input type="text" value="<?php echo $madsonicport ?>" name="madsonicport" /><br />
|
|
Madsonic Name: <input type="text" value="<?php echo $madsonicname ?>" name="madsonicname" /><br />
|
|
Madsonic Pic: <input type="text" value="<?php echo $madsonicpicname ?>" name="madsonicpicname" /><br />
|
|
|
|
</div>
|
|
<div style="float:right; width:50%; ">
|
|
<br />
|
|
Plex Enabled: <input name="plexvisible" id="id" type="checkbox" <?php if($plexvisible > "0") echo "checked=checked; "; ?> /><br />
|
|
Plex Port: <input type="text" value="<?php echo $plexport ?>" name="plexport" /><br />
|
|
Plex Name: <input type="text" value="<?php echo $plexname ?>" name="plexname" /><br />
|
|
Plex Pic: <input type="text" value="<?php echo $plexpicname ?>" name="plexpicname" /><br />
|
|
<br />
|
|
Squeezebox Enabled: <input name="squeezevisible" id="id" type="checkbox" <?php if($squeezevisible > "0") echo "checked=checked; "; ?> /><br />
|
|
Squeezebox Port: <input type="text" value="<?php echo $squeezeport ?>" name="squeezeport" /><br />
|
|
Squeezebox Name: <input type="text" value="<?php echo $squeezename ?>" name="squeezename" /><br />
|
|
Squeezebox Pic: <input type="text" value="<?php echo $squeezepicname ?>" name="squeezepicname" /><br />
|
|
<br />
|
|
Jdownloader Enabled: <input name="jdownloadervisible" id="id" type="checkbox" <?php if($jdownloadervisible > "0") echo "checked=checked; "; ?> /><br />
|
|
Jdownloader Name: <input type="text" value="<?php echo $jdownloadername ?>" name="jdownloadername" /><br />
|
|
Jdownloader Pic: <input type="text" value="<?php echo $jdownloaderpicname ?>" name="jdownloaderpicname" /><br />
|
|
<br />
|
|
</div>
|
|
|
|
</div>
|
|
<div>
|
|
<input type="submit" name="submit" value="Update" />
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</form>
|