forked from whgojp/JavaSecLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path401.html
More file actions
34 lines (34 loc) · 749 Bytes
/
401.html
File metadata and controls
34 lines (34 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>401 Unauthorized</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
h1 {
font-size: 50px;
color: #f44336;
}
p {
font-size: 20px;
color: #555;
}
a {
color: #2196F3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>401 - Unauthorized</h1>
<p>Sorry, you are not authorized to access this page.</p>
<p><a href="/">Go to Homepage</a></p>
</body>
</html>