myMedisys/tomcatfiles/mymedisys-frontend/WEB-INF/classes/templates/page/error.html
2023-09-06 05:56:42 +05:30

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>