<!DOCTYPE html>
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:layout="http://www.w3.org/1999/xhtml"
|
xmlns:th="http://www.thymeleaf.org" layout:decorator="MasterPage/CommonPage/Layout">
|
<head>
|
<meta charset="UTF-8"/>
|
<title th:text="${systemName}"></title>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
<link rel="stylesheet" th:href="@{${pubzyWebRoot} + 'BootStrap4/expand/plugins/jqgrid/ui.jqgrid-bootstrap.css'}"/>
|
<script th:src="@{${pubzyWebRoot} + 'BootStrap4/assets/js/jquery.min.js'}"></script>
|
</head>
|
<body>
|
<div layout:fragment="content" style="background-color: #fff;">
|
<div style="font-size: 18px;text-align: center;width: 100%; margin-top: 10px;" th:text="${message}"></div>
|
</div>
|
</body>
|
</html>
|