info_write_pwd.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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=utf-8" />
  5. <meta http-equiv="Content-Language" content="zh-CN"/>
  6. <title>powered by mymps</title>
  7. <link href="<?=$mymps_global['SiteUrl']?>/template/global/button.css" rel="stylesheet" type="text/css" />
  8. <style type="text/css">
  9. body{font-size:14px;padding:0;margin:0; color:#333}
  10. p,form,ul,dl,ol,li,dt,dd,h1,h2,h3{margin:0;padding:0;list-style:none;}
  11. .table{width:100%;height:100%;margin:15px 15px 15px 30px;}
  12. span.red{ font-size:14px; color:#ff0000; line-height:2.2;}
  13. .tablestyle-2{font-size:14px;line-height:25px;font-family:microsoft yahei; margin-bottom:15px;}
  14. .tablestyle-2 tr{width:285px;}
  15. .tablestyle-2 td.t{text-align:left; vertical-align:top; width:80px; font-weight:bold}
  16. .tablestyle-2 td{ padding:5px 0; }
  17. .tablestyle-2 td input{ border:1px #ddd solid; padding:5px; width:250px;}
  18. </style>
  19. <script language="javascript">
  20. function submitForm(){
  21. if (document.form1.manage_pwd.value=="") {
  22. alert('请输入该信息的管理密码!');
  23. document.form1.manage_pwd.focus();
  24. return false;
  25. }
  26. return true;
  27. }
  28. </script>
  29. </head>
  30. <body>
  31. <div class="table">
  32. <form name="form1" method="post" action="<?php echo $mymps_global['SiteUrl']?>/box.php" onSubmit="return submitForm();">
  33. <input name="part" value="<?=$part?>" type="hidden">
  34. <input name="id" value="<?=$id?>" type="hidden">
  35. <table cellpadding="0" cellspacing="0" class="tablestyle-2">
  36. <tr>
  37. <td class="t">信息主题</td>
  38. <td><?=$post[title]?></td>
  39. </tr>
  40. <tr>
  41. <td class="t">管理密码</td>
  42. <td><input type="password" name="manage_pwd"/></td>
  43. </tr>
  44. <tr>
  45. <td class="t" style="border-bottom:1px #fff solid">&nbsp;</td>
  46. <td style="border-bottom:1px #fff solid"><input type="submit" class="gray mini" value="确认删除" style="width:80px;" /></td>
  47. </tr>
  48. </table>
  49. </form>
  50. </div>
  51. </body>
  52. </html>