diff options
author | Dimitrie Hoekstra <dimitriehoekstra@gmail.com> | 2016-12-14 15:44:15 +0100 |
---|---|---|
committer | Dimitrie Hoekstra <dimitriehoekstra@gmail.com> | 2016-12-14 15:44:15 +0100 |
commit | 0c1f6cc592afbcc426d730f77e5863df6b476ab7 (patch) | |
tree | 752b2a541a15ef1cecf5c094005312e9da79eef9 /public/500.html | |
parent | 278baa5b618c5595045415a55d863daf9a15d792 (diff) | |
download | gitlab-ce-0c1f6cc592afbcc426d730f77e5863df6b476ab7.tar.gz |
added go back anchor on error pages
Diffstat (limited to 'public/500.html')
-rw-r--r-- | public/500.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/500.html b/public/500.html index f92e8839f8d..226ef3c40ea 100644 --- a/public/500.html +++ b/public/500.html @@ -46,6 +46,14 @@ margin: 40px auto; } + a { + line-height: 100px; + font-weight: normal; + color: #4A8BEE; + font-size: 18px; + text-decoration: none; + } + .container { margin: auto 20px; } @@ -63,6 +71,7 @@ <hr /> <p>Try refreshing the page, or going back and attempting the action again.</p> <p>Please contact your GitLab administrator if this problem persists.</p> + <a href="javascript:history.back()">Go back</a> </div> </body> </html> |