国内流行的内容管理系统(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.

35 lines
1.4KB

  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><?php echo $diy->name;?>-<?php echo $cfg_webname;?></title>
  7. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="<?php echo $cfg_cmsurl;?>/static/web/css/style.css">
  10. <script src="<?php echo $cfg_cmsurl;?>/static/web/js/jquery.min.js"></script>
  11. </head>
  12. <body>
  13. <?php pasterTempletDiy('top.htm');?>
  14. <div class="container py-3">
  15. <div class="row">
  16. <div class="col-md-12">
  17. <h4 class="mb-3"><?php echo $diy->name;?>发布</h4>
  18. <form action="<?php echo $cfg_cmspath;?>/apps/diy.php" enctype="multipart/form-data" method="post">
  19. <input type="hidden" name="action" value="post">
  20. <input type="hidden" name="diyid" value="<?php echo $diyid;?>">
  21. <input type="hidden" name="do" value="2">
  22. <table cellpadding="0" cellspacing="1" class="table">
  23. <?php echo $postform;?>
  24. </table>
  25. <div class="text-center">
  26. <button type="submit" name="submit" class="btn btn-success">提交</button>
  27. <button type="reset" name="reset" class="btn btn-outline-success">重置</button>
  28. </div>
  29. </form>
  30. </div>
  31. </div>
  32. </div>
  33. <?php pasterTempletDiy('foot.htm');?>
  34. </body>
  35. </html>