error.html
1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head th:replace="../templates/common/head::head">
</head>
<body class="skin-blue sidebar-mini">
<div class="wrapper">
<div th:replace="../templates/common/frame::frame"></div>
<div class="content-wrapper" style="min-height: 588px;">
<section class="content-header">
<h1>
报错页面
</h1>
<ol class="breadcrumb">
<li>首页</li>
<li class="active">报错页面</li>
</ol>
</section>
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box box-info">
<div class="box-body">
<div class="container" style="background-color:#FFF;padding:150px;text-align: center; display: table-cell; vertical-align: middle;">
<div class="content" style="text-align: center;display: inline-block;">
<div style="font-size: 40px;" th:utext="${errorMessage}">出错了,请稍后再试!</div>
<br>
<div style="font-size: 20px;color:red;" th:utext="${remindMessage}">出错了,请稍后再试!</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<footer th:replace="../templates/common/foot::foot"></footer>
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg" style="position: fixed; height: auto;"></div>
</div><!-- ./wrapper -->
<!-- AdminLTE App -->
<script src="../../static/js/app.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="../../static/js/sidebar.js"></script>
</body>
</html>