-
Notifications
You must be signed in to change notification settings - Fork 0
/
401.html
43 lines (38 loc) · 820 Bytes
/
401.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Permission denied</title>
<style>
html,
body {
margin-block: 0;
padding-block: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(120deg, #30142d, #4b1818);
color: aliceblue;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, 'Droid Sans', sans-serif;
font-weight: 100;
font-size: 2rem;
min-height: 100vh;
}
h1,
p {
font-weight: 100;
text-align: center;
margin-block: 0;
}
</style>
<meta name="robots" content="noindex">
</head>
<body>
<h1>401</h1>
<p>You seem to be missing permission to do this, sorry</p>
</body>
</html>