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

52 lines
1.9KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title><?php echo $diy->name; ?></title>
  6. <link rel="stylesheet" href="../static/web/css/admin.css">
  7. <script language="javascript" src="../static/web/js/webajax.js"></script>
  8. <script language="javascript" src="js/main.js"></script>
  9. <script language="javascript">
  10. function SelectTemplets(fname){
  11. if(document.all){
  12. var posLeft = window.event.clientY-100;
  13. var posTop = window.event.clientX-400;
  14. } else {
  15. var posLeft = 100;
  16. var posTop = 100;
  17. }
  18. window.open("dialog/select_templets.php?f="+fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=600,height=400,left="+posLeft+", top="+posTop);
  19. }
  20. </script>
  21. </head>
  22. <body leftmargin='8' topmargin='8'>
  23. <div class="bodytitle">
  24. <div class="bodytitleleft"></div>
  25. <div class="bodytitletxt">
  26. <a href='diy_main.php'>自定义表单管理</a> &gt; <a href='diy_list.php?action=list&diyid=<?php echo $diyid; ?>'><?php echo $diy->name; ?></a> &gt; 发布内容
  27. </div>
  28. </div>
  29. <form name="form1" action="diy_list.php" method="post" >
  30. <input type="hidden" name="action" value="post">
  31. <input type="hidden" name="diyid" value="<?php echo $diyid; ?>">
  32. <input type="hidden" name="do" value="2">
  33. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#ffffff">
  34. <tr>
  35. <td bgcolor="#ffffff">
  36. <?php
  37. echo $postform;
  38. ?>
  39. </td>
  40. </tr>
  41. </table>
  42. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
  43. <tr>
  44. <td bgcolor="#f6f6f6" height="36" align="center">
  45. <input type="submit" name="submit" value="提交" class='np coolbg' />&nbsp;
  46. <input type="reset" name="reset" value="重置" class='np coolbg' />
  47. </td>
  48. </tr>
  49. </table>
  50. </form>
  51. </body>
  52. </html>