| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php if (!defined("IS_INITPHP")) exit("Access Denied!"); /* INITPHP Version 1.0 ,Create on 2017-11-27 14:23:10, compiled from /data/wwwroot/www.shadowsocks5.com/app/template/ss/manage/node_edit.html */ ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>hehe</title>
- </head>
- <body>
- <div class="mt10" id="forms">
- <div class="box">
- <div class="box_border">
- <div class="box_top">
- <b class="pl15">编辑节点</b>
- </div>
- <div class="box_center">
- <form class="jqtransform" action="/manage/node_edit" method="post">
- <table width="100%" cellspacing="0" cellpadding="0" border="0" class="form_table pt15 pb15">
- <tbody>
- <tr>
- <td class="td_right">节点名称:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_name" value="<?php echo $data['node_name'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">节点类型:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_type" value="<?php echo $data['node_type'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">节点地址:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_server" value="<?php echo $data['node_server'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">加密方法:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_method" value="<?php echo $data['node_method'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">节点描述:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_info" value="<?php echo $data['node_info'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">节点状态:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_status" value="<?php echo $data['node_status'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">节点排序:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="node_order" value="<?php echo $data['node_order'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">服务商:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="idc_server" value="<?php echo $data['idc_server'];?>">
- </td>
- </tr>
- <tr>
- <td class="td_right">服务商地址:</td>
- <td class="">
- <input type="text" size="40" class="input-text lh30" name="idc_url" value="<?php echo $data['idc_url'];?>">
- </td>
- </tr>
- <tr>
- <td></td>
- <td class="">
- <input type="hidden" value="update" name="do">
- <input type="hidden" value="<?php echo $data['id'];?>" name="id">
- <input type="submit" value="保存" class="btn btn82 btn_save2">
- </td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|