-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethod_not_allowed.html
More file actions
58 lines (58 loc) · 1.54 KB
/
method_not_allowed.html
File metadata and controls
58 lines (58 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>405 - Method Not Allowed</title>
<style>
body {
background-color: #000000;
color: #ffffff;
display: flex;
justify-content: flex-start;
align-items: flex-start;
height: 100vh;
flex-direction: column;
font-family: 'Exo', sans-serif;
text-align: left;
padding: 20px;
}
h1 {
font-size: 8rem;
margin: 0;
}
p {
font-size: 1.5rem;
margin: 10px 0;
}
.hint {
font-size: 1rem;
color: #555;
margin-bottom: 5px;
}
.links {
margin-top: 20px;
}
.links a {
font-size: 1rem;
text-decoration: none;
margin-right: 15px;
}
</style>
</head>
<body>
<h1>405</h1>
<p class="hint">The method you made this request with is not allowed by the server</p>
<p>Method Not Allowed</p>
<div class="links">
<a href="javascript:history.back()" class="link">Go Back</a>
<a href="/" class="link">Go Home</a>
</div>
<script>
const colors = ['#E1515F', '#88F6FB', '#FFCF70'];
document.querySelectorAll('.link').forEach(link => {
link.style.color = colors[Math.floor(Math.random() * colors.length)];
});
</script>
</body>
</html>