zkt24/Ekart/src/main/resources/templates/403.html
2024-04-12 10:56:06 +02:00

24 lines
519 B
HTML

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<div th:replace="/fragments/header :: header"/>
</head>
<body>
<div th:replace="/fragments/header :: navbar"/>
<div class="container">
<div class="starter-template">
<h1>403 - Access is denied</h1>
<div th:inline="text">Hello '[[${#httpServletRequest.remoteUser}]]',
you do not have permission to access this page.
</div>
</div>
</div>
<div th:replace="/fragments/footer :: footer"/>
</body>
</html>