6bbb5b5cc2
Unifies the stylesheet for 404 and 500 errors. References the Storj logo rather than embedding it in the HTML. Replaces references to Storj with Storj DCS. Removes reference to nonexistent font. Change-Id: If224f30eb0b21171fc8f575de6c4cef98a48c6f5
21 lines
613 B
HTML
21 lines
613 B
HTML
<!--Copyright (C) 2019 Storj Labs, Inc.-->
|
|
<!--See LICENSE for copying information.-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Internal Server Error - Storj DCS</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/static/errors/error.css">
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<a href="/" class="logo">
|
|
<img src="/static/static/images/dcs-logo.svg" alt="Storj DCS logo">
|
|
</a>
|
|
<h1 class="title">500. Internal server error</h1>
|
|
<img src="/static/static/images/errors/50X.svg" alt="Illustration for 500 page">
|
|
</div>
|
|
</body>
|
|
</html>
|