404.html 1.0 KB

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>RuoYi - 404</title>
  7. <link th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
  8. <link th:href="@{/css/animate.min.css}" rel="stylesheet"/>
  9. <link th:href="@{/css/style.min.css}" rel="stylesheet"/>
  10. </head>
  11. <body class="gray-bg">
  12. <div class="middle-box text-center animated fadeInDown">
  13. <h1>404</h1>
  14. <h3 class="font-bold">找不到网页!</h3>
  15. <div class="error-desc">
  16. 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。
  17. <a href="javascript:index()" class="btn btn-primary m-t">主页</a>
  18. </div>
  19. </div>
  20. <script th:inline="javascript">
  21. var ctx = [[@{/}]];
  22. function index() {
  23. window.top.location = ctx + "index";
  24. }
  25. </script>
  26. </body>
  27. </html>