storj/web/satellite/static/errors/error.html
Jeremy Wharton 34e6c5048b web/satellite,satellite/console/consoleweb: update static error pages
Our static error pages have been unified and updated to reflect our new
designs.

Change-Id: Ib7cf76e87c56180dd997a91a2829187dac99baff
2023-04-14 15:48:15 +00:00

32 lines
969 B
HTML

<!--Copyright (C) 2023 Storj Labs, Inc.-->
<!--See LICENSE for copying information.-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ .StatusCode }} | Storj</title>
<link rel="stylesheet" type="text/css" href="/static/static/errors/error.css">
</head>
<body>
<div class="error-area">
<a class="logo-wrapper" href="/">
<img class="logo" src="/static/static/images/logo.svg" alt="Storj logo" />
</a>
<div class="container">
<h1 class="title">{{ .StatusCode }}</h1>
<h2 class="subtitle">
{{- if eq .StatusCode 400 -}}
Bad request.
{{- else if eq .StatusCode 500 -}}
Internal server error.
{{- else -}}
An error occurred.
{{- end -}}
</h2>
<a href="/" class="button">Go to homepage</a>
</div>
</div>
</body>
</html>