report.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <title>举报信息</title>
  6. <link href="<?=$mymps_global['SiteUrl']?>/template/global/button.css" rel="stylesheet" type="text/css" />
  7. <style type="text/css">
  8. body{font-size:14px;padding:0;margin:0; color:#333}
  9. p,form,ul,dl,ol,li,dt,dd,h1,h2,h3{margin:0;padding:0;list-style:none;}
  10. .askleft{width:450px;height:100%;padding:0 15px 15px 15px;}
  11. textarea{width:360px;height:115px;font-size:14px;border:1px solid #C8C8C8;}
  12. span.red{ font-size:14px; color:#ff0000; line-height:2;}
  13. .tablestyle-2{font-size:14px;line-height:24px;}
  14. .tablestyle-2 tr{width:285px;}
  15. .tablestyle-2 td.t{text-align:left; vertical-align:top; width:120px; font-weight:bold}
  16. .tablestyle-2 td{border-bottom:1px #eee solid; padding:8px 0;}
  17. .tablestyle-2 td input{ margin-top:10px;}
  18. </style>
  19. <script language="javascript">
  20. function submitForm(){
  21. if (document.formReport.content.value=="") {
  22. alert('请填写情况说明!');
  23. document.formReport.content.focus();
  24. return false;
  25. }
  26. return true;
  27. }
  28. </script>
  29. </head>
  30. <body>
  31. <form action="?" name="formReport" method="post" onSubmit="return submitForm();">
  32. <input type="hidden" name="part" value="do_report">
  33. <input type="hidden" name="infoid" value="<?=intval($_GET['id'])?>">
  34. <input type="hidden" name="infotitle" value="<?=trim($_GET['infotitle'])?>">
  35. <div class="askleft">
  36. <table class="tablestyle-2" cellpadding="0" cellspacing="0">
  37. <tr>
  38. <td class="t">信息标题</td>
  39. <td>
  40. <?=trim($_GET['infotitle'])?>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td class="t">信息编号</td>
  45. <td>
  46. <?=intval($_GET['id'])?>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td class="t">举报类型</td>
  51. <td>
  52. <?=get_report_type()?>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td class="t">情况说明</td>
  57. <td>
  58. <textarea name="content" class="fktext"></textarea>
  59. </td>
  60. </tr>
  61. <tr>
  62. <td class="t" style="border-bottom:1px #fff solid">&nbsp;
  63. </td>
  64. <td style="border-bottom:1px #fff solid">
  65. <input type="submit" class="gray mini" value="确认提交" style="width:80px;" />
  66. </td>
  67. </tr>
  68. </table>
  69. </div>
  70. </form>
  71. </body>
  72. </html>