103 |
- |
1 |
<?php echo showSectionHead($spTextPanel['New Proxy']); ?>
|
|
|
2 |
<form id="newProxy">
|
|
|
3 |
<input type="hidden" name="sec" value="create"/>
|
|
|
4 |
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
|
|
|
5 |
<tr class="listHead">
|
|
|
6 |
<td class="left" width='30%'><?php echo $spTextPanel['New Proxy']?></td>
|
|
|
7 |
<td class="right"> </td>
|
|
|
8 |
</tr>
|
|
|
9 |
<tr class="white_row">
|
|
|
10 |
<td class="td_left_col"><?php echo $spText['label']['Proxy']?>:</td>
|
|
|
11 |
<td class="td_right_col"><input type="text" name="proxy" value="<?php echo $post['proxy']?>"><?php echo $errMsg['proxy']?></td>
|
|
|
12 |
</tr>
|
|
|
13 |
<tr class="blue_row">
|
|
|
14 |
<td class="td_left_col"><?php echo $spText['label']['Port']?>:</td>
|
|
|
15 |
<td class="td_right_col">
|
|
|
16 |
<input type="text" name="port" value="<?php echo $post['port']?>" style="width:60px;"><?php echo $errMsg['port']?>
|
|
|
17 |
</td>
|
|
|
18 |
</tr>
|
|
|
19 |
<tr class="white_row">
|
|
|
20 |
<td class="td_left_col"><?php echo $spText['label']['Authentication']?>:</td>
|
|
|
21 |
<td class="td_right_col"><input type="checkbox" id="proxy_auth" name="proxy_auth" <?php echo empty($post['proxy_auth']) ? "" : "checked"; ?> > Yes</td>
|
|
|
22 |
</tr>
|
|
|
23 |
<tr class="white_row">
|
|
|
24 |
<td class="td_left_col"><?php echo $spTextProxy['Proxy Username']?>:</td>
|
|
|
25 |
<td class="td_right_col"><input type="text" name="proxy_username" value="<?php echo $post['proxy_username']?>"><?php echo $errMsg['proxy_username']?></td>
|
|
|
26 |
</tr>
|
|
|
27 |
<tr class="blue_row">
|
|
|
28 |
<td class="td_left_col"><?php echo $spTextProxy['Proxy Password']?>:</td>
|
|
|
29 |
<td class="td_right_col">
|
|
|
30 |
<input type="password" name="proxy_password" value="<?php echo $post['proxy_password']?>"><?php echo $errMsg['proxy_password']?>
|
|
|
31 |
</td>
|
|
|
32 |
</tr>
|
|
|
33 |
<tr class="blue_row">
|
|
|
34 |
<td class="tab_left_bot_noborder"></td>
|
|
|
35 |
<td class="tab_right_bot"></td>
|
|
|
36 |
</tr>
|
|
|
37 |
<tr class="listBot">
|
|
|
38 |
<td class="left" colspan="1"></td>
|
|
|
39 |
<td class="right"></td>
|
|
|
40 |
</tr>
|
|
|
41 |
</table>
|
|
|
42 |
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="actionSec">
|
|
|
43 |
<tr>
|
|
|
44 |
<td style="padding-top: 6px;text-align:right;">
|
|
|
45 |
<a onclick="scriptDoLoad('proxy.php', 'content')" href="javascript:void(0);" class="actionbut">
|
|
|
46 |
<?php echo $spText['button']['Cancel']?>
|
|
|
47 |
</a>
|
|
|
48 |
<?php $actFun = SP_DEMO ? "alertDemoMsg()" : "scriptDoLoadPost('proxy.php', 'newProxy', 'content')"; ?>
|
|
|
49 |
<a onclick="<?php echo $actFun?>" href="javascript:void(0);" class="actionbut">
|
|
|
50 |
<?php echo $spText['button']['Proceed']?>
|
|
|
51 |
</a>
|
|
|
52 |
</td>
|
|
|
53 |
</tr>
|
|
|
54 |
</table>
|
|
|
55 |
</form>
|