zulip/static/html/5xx.html

40 lines
1.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Zulip - 500 internal server error</title>
<link href="/static/third/bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="/static/third/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<!-- NB: Relies on the fact that PipelineCachedStorage also includes
a copy of the file with no hash in the name.
This file will not load in dev unless you set DEBUG = False. -->
<link href="/static/min/portico.css" rel="stylesheet">
<meta http-equiv="refresh" content="60;URL='/'">
</head>
<body id="error_page">
<!-- TODO: Make nginx 5xx error page customizable -->
<!-- This is tricky because it's not served by Django, -->
<!-- so we can't use variables -->
<div class="container">
<div class="row-fluid">
<img src="../images/500art.svg" alt=""/>
<div class="errorbox">
<div class="errorcontent">
<h1 class="lead">Internal server error</h1>
<p>This Zulip server is currently experiencing some technical difficulties. Sorry about that!</p>
<p>The page will reload automatically soon after service is restored.</p>
</div>
</div>
</div>
</div>
</body>
</html>