unauthorized.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <HTML>
  3. <head><meta charset="UTF-8">
  4. <TITLE>401 Authorization Required</TITLE>
  5. <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
  6. <style>
  7. @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
  8. body {
  9. font-family: 'Open Sans', sans-serif;
  10. color: #444;
  11. font-weight: 300;
  12. text-align: center;
  13. }
  14. h1 {
  15. font-weight: 300;
  16. font-size: 100px;
  17. }
  18. h1 i {
  19. font-style: normal;
  20. display: block;
  21. font-size: 200px;
  22. color:orangered;
  23. }
  24. a:link {
  25. color: orangered;
  26. text-decoration: none;
  27. }
  28. ADDRESS {
  29. font-style: normal;
  30. }
  31. p {
  32. font-size: 20px;
  33. max-width: 800px;
  34. margin: 10px auto;
  35. }
  36. hr {
  37. margin: 20px 20px;
  38. display: block;
  39. }
  40. @media all and (max-width: 700px){
  41. h1 {
  42. font-size: 36px;
  43. }
  44. h1 i {
  45. font-size: 80px;
  46. }
  47. }
  48. </style>
  49. <meta name="viewport" content="width=device-width, initial-scale=1">
  50. </HEAD>
  51. <BODY>
  52. <H1><i>401</i>Authorization Required</H1>
  53. <P>This server could not verify that you
  54. are authorized to access the document
  55. requested. Either you supplied the wrong
  56. credentials (e.g., bad password), or your
  57. browser doesn't understand how to supply
  58. the credentials required.</p>
  59. <p>
  60. If you want to report this error click <a href="mailto:matschinermax@gmail.com">here</a>.
  61. </p>
  62. <HR />
  63. <ADDRESS>
  64. Web Server at madgmbh.at, mad GmbH, Am Römerberg 16, 4300 St. Valentin
  65. </ADDRESS>
  66. </BODY>
  67. </HTML>
  68. <!--
  69. - Unfortunately, Microsoft has added a clever new
  70. - "feature" to Internet Explorer. If the text of
  71. - an error's message is "too small", specifically
  72. - less than 512 bytes, Internet Explorer returns
  73. - its own error message. You can turn that off,
  74. - but it's pretty tricky to find switch called
  75. - "smart error messages". That means, of course,
  76. - that short error messages are censored by default.
  77. - IIS always returns error messages that are long
  78. - enough to make Internet Explorer happy. The
  79. - workaround is pretty simple: pad the error
  80. - message with a big comment like this to push it
  81. - over the five hundred and twelve bytes minimum.
  82. - Of course, that's exactly what you're reading
  83. - right now.
  84. -->