30 lines
952 B
HTML
30 lines
952 B
HTML
<!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: 120px" th:text="${statusCode}"></div>
|
|
<div style="font-size: 24px" th:text="${msg}"></div>
|
|
</div>
|
|
</body>
|
|
</html> |