|
12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title><?php echo $diy->name; ?></title>
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script language="javascript" src="../static/web/js/webajax.js"></script>
- <script language="javascript" src="js/main.js"></script>
- <script language="javascript">
- function SelectTemplets(fname){
- var pos = GetWinPos(800,600);
- window.open("dialog/select_templets.php?f="+fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left="+pos.left+", top="+pos.top);
- }
- </script>
- </head>
- <body>
- <form name="form1" action="diy_list.php" method="post" >
- <input type="hidden" name="action" value="post">
- <input type="hidden" name="diyid" value="<?php echo $diyid; ?>">
- <input type="hidden" name="do" value="2">
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#ffffff">
- <tr>
- <td bgcolor="#ffffff">
- <?php
- echo $postform;
- ?>
- </td>
- </tr>
- </table>
- <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
- <tr>
- <td bgcolor="#f8f8f8" align="center" class="py-3">
- <input type="submit" name="submit" value="提交" class='np coolbg' />
- <input type="reset" name="reset" value="重置" class='np coolbg' />
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|