Skip to content

Commit

Permalink
🚸 : add 403 error page
Browse files Browse the repository at this point in the history
  • Loading branch information
juwit committed Aug 15, 2019
1 parent 6e8df1b commit 319fa56
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
Binary file added src/main/resources/static/images/no-entry.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/main/resources/templates/error/403.html
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
<head th:replace="layout/header :: header(~{::title})">

<title>Gaia - Page not found</title>

</head>
<body>

<div class="full_container">
<div class="center verticle_center full_height">
<div class="error_page">
<div class="center">
<img class="img-responsive" src="/images/no-entry.png" alt="#">
</div>
<br>
<h3>STOP HERE !</h3>
<p>YOU'RE NOT ALLOWED TO SEE THIS PAGE !</p>
<div class="center">
<a class="btn btn-success" href="/">Go To Home Page</a>
</div>
</div>
</div>
</div>

</body>
</html>

0 comments on commit 319fa56

Please sign in to comment.