mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-28 03:06:28 +08:00
a55d6ea9de
* Replaced default ruby error pages [SCI-6967] * Remove error 500 in controller [SCI-6967]
20 lines
601 B
HTML
20 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>This page could not be found (404).</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="stylesheet" href="error_pages.css">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- This file lives in public/404.html -->
|
|
<div class="navbar">
|
|
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
|
|
</div>
|
|
<div class="dialog">
|
|
<img src="/images/genericError.svg" class="illustration">
|
|
<h1>Ooops, something went wrong.</h1>
|
|
<p>Please contact your SciNote administrator.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|