scinote-web/public/403.html
ajugo a55d6ea9de
Replaced default ruby error pages [SCI-6967] (#4230)
* Replaced default ruby error pages [SCI-6967]

* Remove error 500 in controller [SCI-6967]
2022-07-15 10:43:07 +02:00

26 lines
738 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Access to this page is denied (403).</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/403.html -->
<div class="navbar">
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
</div>
<div class="dialog">
<img src="/images/undraw_through_the_park.svg" class="illustration">
<h1>It would seem that you are not allowed in here.</h1>
<p>You should request access from your team administrators.</p>
<a class="back-button" href="/dashboard">
<img src="/images/arrow-left.svg">
<span>Go back</span>
</a>
</div>
</body>
</html>