mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
a55d6ea9de
* Replaced default ruby error pages [SCI-6967] * Remove error 500 in controller [SCI-6967]
25 lines
738 B
HTML
25 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>
|