Error_888.cshtml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @{
  2. Layout = null;
  3. }
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta name="viewport" content="width=device-width" />
  8. <title>广域软件系统管理信息系统--导航页</title>
  9. <link href="/Content/themes/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  10. <link href="/Content/themes/css/login.css" rel="stylesheet" type="text/css" />
  11. <script src="/Content/js/jquery.min.js" type="text/javascript"></script>
  12. <script type="text/javascript">
  13. function redirect() {
  14. var ret = $('#redirect').val();
  15. if (ret!='') {
  16. location.href = ret;
  17. } else {
  18. location.href = "/";
  19. }
  20. }
  21. $(function () {
  22. function jump(count) {
  23. window.setTimeout(function () {
  24. count--;
  25. if (count > 0) {
  26. $('#c_time').html(count);
  27. jump(count);
  28. } else {
  29. redirect();
  30. }
  31. }, 1000);
  32. }
  33. jump(10);
  34. });
  35. </script>
  36. </head>
  37. <body>
  38. @Html.Hidden("redirect", ViewData["backurl"])
  39. <div class="container">
  40. <div class="form-signin-heading text-center" style="margin-top:50px;margin-left:auto; margin-right:auto;">
  41. <img src="/Content/themes/images/logo.gif" alt="" style="background-color:#ffffff; border-bottom:1px dashed #808080;">
  42. </div>
  43. <div class="text-center" style="margin: 0px auto; color: #1ab394; font-size:16px; font-family: 微软雅黑,'\5FAE\8F6F\96C5\9ED1',Tahoma,Verdana,'Helvetica Neue',Helvetica,Arial,sans-serif; padding: 10px; width: 800px; background-color: #ffffff; height: 380px; ">
  44. <h4 style="margin-top: 0px;">禁止登录导航</h4>
  45. <div style="border: 1px solid #ffffff; width: 600px;margin:0px auto;">
  46. 系统禁止您登录,请联系系统管理员,系统管理员将解决您的问题;
  47. 倒计时10秒后,将跳转原始网页,您也可以点击下方的“点击返回原网页”进行返回;
  48. </div>
  49. <div style="border: 1px solid #1ab394; font-size: 36px; font-weight: 600; padding-top: 70px; width: 200px; -webkit-border-radius: 100px; border-radius: 100px; -moz-border-radius: 100px; height: 200px; margin: 15px auto; text-align: center; ">
  50. <span id="c_time">10</span>
  51. </div>
  52. <h3 style="position: absolute; margin-left: 300px; top: 450px !important;"><a href="javascript:redirect()" style="color: #1ab394;">点击返回原网页</a></h3>
  53. </div>
  54. </div>
  55. <div class="log_foot">
  56. <div class="log_fback"><p>Copyright © <a href="javascript:void(0)" target="_blank">济南广域软件有限公司</a></p></div>
  57. </div>
  58. </body>
  59. </html>