mirror of
https://github.com/Novartis/cellxgene-gateway.git
synced 2026-09-15 12:47:59 +08:00
44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
<!--
|
|
Copyright 2019 Novartis Institutes for BioMedical Research Inc. Licensed
|
|
under the Apache License, Version 2.0 (the "License"); you may not use
|
|
this file except in compliance with the License. You may obtain a copy
|
|
of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless
|
|
required by applicable law or agreed to in writing, software distributed
|
|
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
|
|
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
|
|
the specific language governing permissions and limitations under the License.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Cellxgene Gateway - Process Error</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<link rel="icon" type="image/png" href="nibr.png">
|
|
{% for script in extra_scripts %}
|
|
<script src="{{ script }}"></script>
|
|
{% endfor %}
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<header class="navbar navbar-expand navbar-dark flex-column flex-md-row bd-navbar">
|
|
<h3>Cellxgene Gateway - Process Error</h3>
|
|
</header>
|
|
<br>
|
|
<div style="margin-left:20px">
|
|
|
|
<h4>{{ message[0] }}</h4>
|
|
<h4>{{ message[1] }}</h4>
|
|
<h4>{{ message[2] }}</h4>
|
|
<h4>{{ message[3] }}</h4>
|
|
|
|
<a href="/filecrawl.html">
|
|
Please click here to be redirected to the file directory.
|
|
</a>
|
|
<br>
|
|
<a href="/">
|
|
Please click here to return to the homepage.
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html>
|