-
Notifications
You must be signed in to change notification settings - Fork 1
/
precondition_failed.html
33 lines (33 loc) · 1.29 KB
/
precondition_failed.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
<html>
<head>
<title>InvoicePlane - 412 Precondition Failed</title>
<link rel="stylesheet" href="styles.css" type="text/css"/>
</head>
<body>
<div class="container">
<img src="logo_300x150.jpg" class="logo"/>
<div class="text error">Whoops, something went wrong.</div>
<div class="subtext">We should be back in a few minutes.<br>Please check <a href="http://status.invoiceplane.com">the
InvoicePlane status page</a> for more information.
</div>
<div class="subtext small">(Error 412 - Precondition Failed)</div>
</div>
</body>
</html>
<!--
- Unfortunately, Microsoft has added a clever new
- "feature" to Internet Explorer. If the text of
- an error's message is "too small", specifically
- less than 512 bytes, Internet Explorer returns
- its own error message. You can turn that off,
- but it's pretty tricky to find switch called
- "smart error messages". That means, of course,
- that short error messages are censored by default.
- IIS always returns error messages that are long
- enough to make Internet Explorer happy. The
- workaround is pretty simple: pad the error
- message with a big comment like this to push it
- over the five hundred and twelve bytes minimum.
- Of course, that's exactly what you're reading
- right now.
-->