23 lines
982 B
HTML
23 lines
982 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
<head th:replace="_fragments :: head(${error})"></head>
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
<header class="row page-header" th:replace="_fragments :: page-header"></header>
|
|
<main class="row page-main">
|
|
<div class="col-sm">
|
|
<div class="d-flex justify-content-center align-items-center">
|
|
<div class="pt-5 mt-5">
|
|
<h1 class="font-weight-bold mb-3 text-danger">403 - Access Denied</h1>
|
|
<h4 class="mb-3">You are not authorized to view this page.</h4>
|
|
<h4>Please contact concerned department for granting you required rights.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<div th:replace="_fragments :: page-footer-scripts"></div>
|
|
</body>
|
|
</html> |