1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
//----------------------------------// // Copyright by Matthias Speer // //----------------------------------//
include('./config.inc.php');
include('./auth.php');
$cmd=isset($_GET['cmd'])?DecodeGET($_GET['cmd']):'';
?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>Command-Input</TITLE> <META http-equiv="Content-Type" content="text/html; charset=<?php echo GetLocText('charset', false); ?>"> <LINK href="style/global.css" rel="stylesheet" type="text/css"> <LINK href="style/form.css" rel="stylesheet" type="text/css"> <SCRIPT language="JavaScript" src="./script/frames.js" type="text/JavaScript"></SCRIPT> </HEAD> <BODY class=body_tool> <FORM action=cmd_fs.php method=post name=formcmd target=frm_main> <TABLE width="100%" height="100%" border="0" cellspacing="0" cellpadding="5"> <TR> <TD valign=middle class="text1"> <?php echo GetLocText('cmd_cmd'); ?>: <INPUT name=cmd type=text class="inp80" value="<?php echo $cmd; ?>"> <INPUT type=submit class="btn" value="<?php echo GetLocText('cmd_exec'); ?>"> </TD> </TR> </TABLE> </FORM> </BODY> </HTML>
|