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
585 B
HTML
21 lines
585 B
HTML
<!--Copyright (C) 2019 Storj Labs, Inc.-->
|
|
<!--See LICENSE for copying information.-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Page Not Found - 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">404. Something Went Wrong</h1>
|
|
<img src="/static/static/images/errors/404.svg" alt="Illustration for 404 page">
|
|
</div>
|
|
</body>
|
|
</html>
|