24 lines
519 B
HTML
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> |