blob: ea5a329869bebef80d9064b480502fb3f5525b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<html xmlns:th="http://thymeleaf.org">
<head>
<title>Error Occurred</title>
</head>
<body>
<h1>An error occurred!</h1>
<p>Status: <span th:text="${status}">500</span></p>
<p>Message: <span th:text="${message}">Error Message</span></p>
<p>Timestamp: <span th:text="${timestamp}">Date</span></p>
</body>
</html>
|