-
Notifications
You must be signed in to change notification settings - Fork 2
/
unauthorized.html
51 lines (51 loc) · 1.2 KB
/
unauthorized.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Unauthorized Access</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #fcb700;
color: #333;
text-align: center;
padding: 50px;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: inline-block;
}
h1 {
font-size: 2em;
margin-bottom: 10px;
}
p {
margin-bottom: 20px;
}
a {
text-decoration: none;
color: #fcb700;
font-weight: bold;
border: 2px solid #fcb700;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #fcb700;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<h1>Unauthorized Access</h1>
<p>You do not have permission to access this page.</p>
<a href="index.html">Go to Home</a>
</div>
</body>
</html>