success.html 963 B

1234567891011121314151617181920212223242526272829303132
  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>页面提示</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <load href ="__TMPL__Public/css/style.css" />
  7. <script language="JavaScript">
  8. function jump(url)
  9. {
  10. if(url.substr(0,10)!="javascript")
  11. location.href = url;
  12. else
  13. history.go(-1);
  14. }
  15. <if condition="$waitSecond neq '-1'">
  16. window.setInterval("jump('{$jumpUrl}')", 5000);
  17. </if>
  18. </script>
  19. </head>
  20. <body>
  21. <div class="block install">
  22. <div style=" font-size:12px; font-weight:bold;">{$msgTitle}</div>
  23. <div style="color: #f30; font-size:14px; font-weight:bold;">{$message}</div>
  24. <div>{$error}</div>
  25. <if condition="$waitSecond neq '-1'">
  26. <div>
  27. 系统将在 <span style="color:blue;font-weight:bold">5</span> 秒后自动跳转,如果不想等待,直接点击 <a href="{$jumpUrl}">这里</a> 跳转
  28. </div>
  29. </if>
  30. </div>
  31. </body>
  32. </html>