-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnauthorized.html
More file actions
84 lines (77 loc) · 2.18 KB
/
Copy pathUnauthorized.html
File metadata and controls
84 lines (77 loc) · 2.18 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--color-primary: #2D0C31;
--color-secondary: #004D4D;
--color-accent: #00B894;
--color-light: #B8B5FF;
--color-lighter: #B8FFB5;
}
body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: white;
}
.card {
width: 100%;
max-width: 500px;
padding: 40px 30px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 16px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
animation: fadeIn 0.5s ease-in-out;
}
.icon {
font-size: 3.5rem;
color: var(--color-accent);
margin-bottom: 20px;
}
h1 {
margin: 0 0 15px;
font-size: 2rem;
color: white;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 25px;
opacity: 0.9;
}
.contact {
font-size: 0.9rem;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="card">
<div class="icon">
<i class="fas fa-lock"></i>
</div>
<h1>Unauthorized Access</h1>
<p>We're sorry, but your email address doesn't have permission to access this resource.</p>
<p>If you believe this is an error, please contact your system administrator.</p>
<div class="contact">
<i class="fas fa-envelope"></i> mohamedaiman103@gmail.com
</div>
</div>
</body>
</html>