-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathno_access.html
More file actions
33 lines (33 loc) · 908 Bytes
/
no_access.html
File metadata and controls
33 lines (33 loc) · 908 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
<!DOCTYPE html>
<html>
<head>
<title>No Access - EuroPython Internal</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background: #f5f5f5;
}
.box {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-align: center;
max-width: 500px;
}
h1 { color: #d32f2f; }
</style>
</head>
<body>
<div class="box">
<h1>Access Denied</h1>
<p>You are logged in but do not have access to this resource yet.</p>
<p>Please contact an admin to get your account promoted.</p>
</div>
</body>
</html>