error.html 798 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
  2. <html>
  3. <head>
  4. <title>{:l("ERROR")}</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta http-equiv="refresh" content="{$waitSecond};URL={$jumpUrl}" />
  7. <load href='__TMPL__Common/style/style.css' />
  8. </head>
  9. <body>
  10. <div class="message">
  11. <table cellpadding=0 cellspacing=0 class="form" >
  12. <tr>
  13. <td class="topTd"></td>
  14. </tr>
  15. <tr class="row" >
  16. <th class="title_row">{$msgTitle}</th>
  17. </tr>
  18. <tr class="row">
  19. <td class="message_row">{$message}</td>
  20. </tr>
  21. <tr class="row">
  22. <td class="jump)row">
  23. {:sprintf(l("JUMP_TIPS"),$waitSecond,$jumpUrl)}
  24. </td>
  25. </tr>
  26. <tr>
  27. <td class="bottomTd"></td>
  28. </tr>
  29. </table>
  30. </div>
  31. </body>
  32. </html>