21 lines
428 B
HTML
21 lines
428 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="ISO-8859-1">
|
|
<title>Error</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="error-container">
|
|
<div th:if="${errorcode=='EXC'}">
|
|
<div class="http-error-container">
|
|
<h1>HTTP Status - Error Occurred!!!</h1>
|
|
<p style="text-align: left; color: #a94442;">
|
|
<th:block th:text="${errorMsg}" />
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |