dnet-applications/apps/dhp-mdstore-manager/src/main/resources/templates/error.html

28 lines
586 B
HTML

<!DOCTYPE html>
<html>
<head>
<title th:text="${title}" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/bootstrap-theme.min.css" />
<script src="./js/jquery-1.12.3.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
</head>
<style>
td {
vertical-align: middle !important;
}
</style>
<body>
<div class="container-fluid">
<h1 th:text="${title}" />
<hr />
<h4 class="text-danger" th:text="${error}" />
<hr />
<pre class="small" th:text="${stacktrace}" />
</div>
</body>
</html>