| 1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
- <style>
- .page-error {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- min-height: calc(100vh - 110px);
- margin-bottom: 0;
- }
- </style>
- </head>
- <body>
- <div class="page-error" style="color: #009688">
- <div style="font-size: 24px" th:text="${errMsg}"></div>
- </div>
- </body>
- </html>
|