summaryrefslogtreecommitdiff
path: root/spring-boot/10-role-based-security/src/main/resources/templates/error/403.html
blob: c1db2c092781bb05e22b300af8f4e71c0a5ff6d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html xmlns:th="http://thymeleaf.org">
<head>
    <title>Error Occurred</title>
</head>
<body>
    <h1>You have no permission!</h1>
    <p>Status: <span th:text="${status}">500</span></p>
    <p>Message: <span th:text="${message}">Error Message</span></p>
    <p>Timestamp: <span th:text="${timestamp}">Date</span></p>
</body>
</html>