error.php 1.2 KB

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <title>Error <?php echo $data['code']; ?></title>
  6. <style type="text/css">
  7. /*<![CDATA[*/
  8. body {font-family:"Verdana";font-weight:normal;color:black;background-color:white;}
  9. h1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
  10. h2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
  11. h3 {font-family:"Verdana";font-weight:bold;font-size:11pt}
  12. p {font-family:"Verdana";font-weight:normal;color:black;font-size:9pt;margin-top: -5px}
  13. .version {color: gray;font-size:8pt;border-top:1px solid #aaaaaa;}
  14. /*]]>*/
  15. </style>
  16. </head>
  17. <body>
  18. <h1>此错误 <?php echo '已记录'.$data['code']; ?></h1>
  19. <h2><?php echo nl2br(CHtml::encode($data['message'])); ?></h2>
  20. <p>如果您发现此错误,请与<?php echo $data['admin']; ?>联系</p>
  21. <div class="version">
  22. <?php echo date('Y-m-d H:i:s',$data['time']) .' '. $data['version']; ?>
  23. </div>
  24. </body>
  25. </html>