国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

57 行
2.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>修改插件</title>
  7. <link rel="stylesheet" href="/static/web/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. <div class="container-fluid">
  13. <ol class="breadcrumb">
  14. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  15. <li class="breadcrumb-item"><a href="plus_main.php">插件管理</a></li>
  16. <li class="breadcrumb-item active">修改插件</li>
  17. </ol>
  18. <div class="card shadow-sm">
  19. <div class="card-header">修改插件</div>
  20. <div class="card-body">
  21. <form name="form1" action="plus_edit.php" method="post">
  22. <input type="hidden" name="dopost" value="saveedit">
  23. <input type="hidden" name="aid" value="<?php echo $aid?>">
  24. <div class="table-responsive">
  25. <table class="table table-borderless">
  26. <tbody>
  27. <tr>
  28. <td width="260">插件名称</td>
  29. <td><input type="text" name="plusname" class="admin-input-sm" value="<?php echo $row['plusname']?>" required></td>
  30. </tr>
  31. <tr>
  32. <td>作者</td>
  33. <td><?php echo $row['writer']?></td>
  34. </tr>
  35. <tr>
  36. <td>菜单配置</td>
  37. <td><textarea name="menustring" id="menustring" class="admin-textarea-xl"><?php echo $row['menustring']?></textarea></td>
  38. </tr>
  39. <tr>
  40. <td>文件列表</td>
  41. <td><textarea name="filelist" id="filelist" class="admin-textarea-xl"><?php echo $row['filelist']?></textarea></td>
  42. </tr>
  43. <tr>
  44. <td colspan="2" align="center">
  45. <button type="submit" class="btn btn-success btn-sm">保存</button>
  46. <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
  47. </td>
  48. </tr>
  49. </tbody>
  50. </table>
  51. </div>
  52. </form>
  53. </div>
  54. </div>
  55. </div>
  56. </body>
  57. </html>