国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.5KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>修改插件</title>
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
  13. <form name="form1" action="plus_edit.php" method="post">
  14. <input type="hidden" name="dopost" value="saveedit">
  15. <input type="hidden" name="aid" value="<?php echo $aid?>">
  16. <tr>
  17. <td bgcolor="#f5f5f5" colspan="2"><a href="plus_main.php">插件管理</a> &gt; 修改插件</td>
  18. </tr>
  19. <tr>
  20. <td width="260">插件名称</td>
  21. <td><input type="text" name="plusname" class="admin-input-sm" value="<?php echo $row['plusname']?>"></td>
  22. </tr>
  23. <tr>
  24. <td>作者</td>
  25. <td><?php echo $row['writer']?></td>
  26. </tr>
  27. <tr>
  28. <td>菜单配置</td>
  29. <td><textarea name="menustring" id="menustring" class="admin-textarea-xl"><?php echo $row['menustring']?></textarea></td>
  30. </tr>
  31. <tr>
  32. <td>文件列表</td>
  33. <td><textarea name="filelist" id="filelist" class="admin-textarea-xl"><?php echo $row['filelist']?></textarea></td>
  34. </tr>
  35. <tr>
  36. <td bgcolor="#f5f5f5" colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">确定</button></td>
  37. </tr>
  38. </form>
  39. </table>
  40. </body>
  41. </html>