diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-13 15:49:08 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-13 15:49:08 +0100 |
commit | 16cbcce87248fc0c13b4d99a3c796a27323c22a6 (patch) | |
tree | 4e3055222701c5d037681f0c20197a71770377f8 /errors/500.html | |
parent | 2468425cbde40537364f5e20a4317783903e26e8 (diff) | |
download | bugzilla-16cbcce87248fc0c13b4d99a3c796a27323c22a6.tar.gz bugzilla-16cbcce87248fc0c13b4d99a3c796a27323c22a6.tar.xz |
Bug 850546: Add custom 401,403,404, and 500 pages
Diffstat (limited to 'errors/500.html')
-rw-r--r-- | errors/500.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/errors/500.html b/errors/500.html new file mode 100644 index 000000000..672dba36d --- /dev/null +++ b/errors/500.html @@ -0,0 +1,37 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Internal Server Error</title> + <style type="text/css"> + body { + margin: 1em 2em; + background-color: #455372; + color: #ddd; + font-family: sans-serif; + } + h1, h3 { + color: #fff; + } + a { + color: #fff; + text-decoration: none; + } + #buggie { + float: left; + } + #content { + margin-left: 100px; + padding-top: 20px; + } + </style> + </head> + <body> + <img src="images/buggie.png" id="buggie" alt="buggie" width="78" height="215"> + <div id="content"> + <h1>Internal Server Error</h1> + <p>The server encountered an internal errors and was unable to complete your request.</p> + <h3>Error 500</h3> + <p><a href="/">bugzilla.mozilla.org</a></p> + </div> + </body> +</html> |