error.html 890 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
  4. <style>
  5. .page-error {
  6. display: -webkit-box;
  7. display: -ms-flexbox;
  8. display: flex;
  9. -webkit-box-align: center;
  10. -ms-flex-align: center;
  11. align-items: center;
  12. -webkit-box-pack: center;
  13. -ms-flex-pack: center;
  14. justify-content: center;
  15. -webkit-box-orient: vertical;
  16. -webkit-box-direction: normal;
  17. -ms-flex-direction: column;
  18. flex-direction: column;
  19. min-height: calc(100vh - 110px);
  20. margin-bottom: 0;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="page-error" style="color: #009688">
  26. <div style="font-size: 24px" th:text="${errMsg}"></div>
  27. </div>
  28. </body>
  29. </html>