This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path431.html
118 lines (113 loc) · 4.45 KB
/
431.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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html class="dark" lang="en">
<head>
<title>Request Header Fields Too Large — Creators.TF</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="color-scheme" content="light dark">
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://status.creators.tf/creators-portable.css?tanner">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script>
document.onreadystatechange = function () {
if (document.readyState != "complete") return;
for (const btn of document.getElementsByClassName('tf-button')) {
btn.addEventListener('mousemove', ({clientX: x, clientY: y}) => {
let rect = btn.getBoundingClientRect();
let X = ((x - rect.left) - (rect.width / 2)) / rect.width * 10;
let Y = ((y - rect.top) - (rect.height / 2)) / rect.height * 10;
btn.style.setProperty('--x', `calc(${X}% + 50%)`);
btn.style.setProperty('--y', `calc(${Y}% + 50%)`);
});
}
}
</script>
<style>
body {
background: none !important;
display: flex;
flex-direction: column;
}
main {
flex: 1;
position: relative;
}
main:before {
content: '';
display: block;
background-image: url(https://wiki.teamfortress.com/w/images/e/ea/Taunt_jumping_jack.png);
background-repeat: no-repeat !important;
background-size: 50%;
position: absolute;
overflow: visible;
top: 0;
background-position: top;
height: 100%;
width: 50%;
}
h2 {
font-family: Rowdies, sans-serif;
text-transform: uppercase;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-light">
<div class="container" style="padding: 0 1em;">
<a class="navbar-brand" href="https://creators.tf">
<img src="https://creators.tf/cdn/assets/images/creators_logo_gear_newest.png" alt="Creators.TF Logo" style="height: 43px;">
</a>
<div class="navbar-expand mr-auto" style="padding-left: 50px">
<ul class="navbar-nav">
<a href="https://creators.tf/contracker" class="nav-item nav-link">
<i class="mdi mdi-tablet"></i> Contracker
</a>
<a href="https://creators.tf/store" class="nav-item nav-link">
<i class="mdi mdi-store"></i> Store
</a>
</div>
</div>
</div>
</nav>
</header>
<main class="container mt-5">
<article>
<div class="row">
<div class="col-6"></div>
<div class="col" style="text-align: justify;">
<span>
<span style="background: rgb(175 31 31); padding: .25rem .5rem;">
<i class="mdi mdi-alert"></i>
<code style="color: white !important; font-family: 'Oswald';">ERROR CODE 431</code>
</span>
</span>
<h2 class="mt-2">Request Header Fields Too Large</h2>
<p class="mt-2">
<em>Oh no! It seems that you've encountered an error—</em>
</p>
<blockquote cite="https://httpstatuses.com/431">The 431 status code indicates that the server is unwilling to process the request because its header fields are too large. The request MAY be resubmitted after reducing the size of the request header fields.</blockquote>
<p>Our development team has been notified via Sentry, our error tracking service. Below are two optons to assist you in navigating onward from this error page.</p>
<div class="mt-5 float-right d-flex align-items-center">
<a class="tf-button2" href="https://creators.tf">
<i class="mdi mdi-home"></i>
<label>homepage</label>
</a>
<button class="tf-button2" style="height: 48px" onclick="javascript:history.back(1)" title="Go back one page">
<svg style="width:1.5rem; height:1.5rem" viewBox="0 0 24 24">
<path fill="currentColor" d="M13.5 21H6V17H13.5C15.43 17 17 15.43 17 13.5S15.43 10 13.5 10H11V14L4 8L11 2V6H13.5C17.64 6 21 9.36 21 13.5S17.64 21 13.5 21Z" />
</svg>
</button>
</div>
</div>
</div>
</article>
</main>
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1">© CreatorsTF LTD 2019 – 2021</p>
</footer>
</body>
</html>