Paul c575ba8d6f Issue 6427 fix incompatible dependencies (#6428)
* fix 6427 - update Spring Boot to 2.1.3, update Spring Cloud to Greenwich.RELEASE

* cleanup: specify Thymeleaf namespace, `@ComponentScan` is redundant near `@SpringBootApplication`
2019-02-27 09:54:22 -08:00

20 lines
555 B
HTML

<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
<title>Error Occurred</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
</head>
<body>
<div class="container">
<h1>Error Occurred!</h1>
<div class="alert alert-danger" role="alert">
<b>
[<span th:text="${status}">status</span>]
<span th:text="${error}">error</span>
</b>
<p th:text="${message}">message</p>
</div>
</div>
</body>
</html>