diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-02-23 21:04:20 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-02-23 21:04:20 +0200 |
commit | 81092c01984a481e312de10a28e3f1a6dda182a3 (patch) | |
tree | 994ed24420f93900462b4703954c6b973e429448 /public/500.html | |
parent | 7d279f9302151e3c8f4c5df9c5200a72799409b9 (diff) | |
download | gitlab-ce-81092c01984a481e312de10a28e3f1a6dda182a3.tar.gz |
Status codes for errors, New error pages
Diffstat (limited to 'public/500.html')
-rw-r--r-- | public/500.html | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/public/500.html b/public/500.html index b1d544647a1..36e14b802ee 100644 --- a/public/500.html +++ b/public/500.html @@ -2,22 +2,13 @@ <html> <head> <title>We're sorry, but something went wrong (500)</title> - <style type="text/css"> - body { background-color: #EAEAEA; color: #666; text-align: center; font-family: arial, sans-serif; } - div.dialog { - width: 600px; - padding: 0 4em; - margin: 4em auto 0 auto; - } - h1 { font-size: 48px; color: #444; line-height: 1.5em; } - h2 { font-size: 24px; color: #666; line-height: 1.5em; } - </style> + <link href="static.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> <!-- This file lives in public/500.html --> - <div class="dialog"> - <h1>500</h1> + <h1>500</h1> + <div class="alert-message block-message error"> <h2>We're sorry, but something went wrong.</h2> <p>We've been notified about this issue and we'll take a look at it shortly.</p> </div> |