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

55 lines
2.0KB

  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 href="css/base.css" rel="stylesheet" type="text/css" />
  7. <script language="javascript" src="../static/js/dedeajax2.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. }
  15. else{
  16. var posLeft = 100;
  17. var posTop = 100;
  18. }
  19. window.open("dialog/select_templets.php?f="+fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=600,height=400,left="+posLeft+", top="+posTop);
  20. }
  21. </script>
  22. </head>
  23. <body leftmargin='8' topmargin='8'>
  24. <div class="bodytitle">
  25. <div class="bodytitleleft"></div>
  26. <div class="bodytitletxt">
  27. <a href='diy_main.php'><b>自定义表单管理</b></a> &gt; <a href='diy_list.php?action=list&diyid=<?php echo $diyid; ?>'><b><?php echo $diy->name; ?></b></a> &gt; <b>发布内容</b>
  28. </div>
  29. </div>
  30. <form name="form1" action="diy_list.php" method="post" >
  31. <input type="hidden" name="action" value="post" />
  32. <input type="hidden" name="diyid" value="<?php echo $diyid;?>" />
  33. <input type="hidden" name="do" value="2" />
  34. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#ffffff">
  35. <tr>
  36. <td bgcolor="#ffffff">
  37. <?php
  38. echo $postform;
  39. ?>
  40. </td>
  41. </tr>
  42. </table>
  43. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  44. <tr>
  45. <td bgcolor="#F9FCEF" height="36" align="center">
  46. <input type="submit" name="submit" value="提交" class='np coolbg' />
  47. &nbsp;
  48. <input type="reset" name="reset" value="重置" class='np coolbg' />
  49. </td>
  50. </tr>
  51. </table>
  52. </form>
  53. </body>
  54. </html>