Files
zipline/views/error.ejs
2020-04-26 14:41:55 -07:00

25 lines
653 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<style>
body,
html {
height: 100%;
}
</style>
<%- include('./partials/head') %>
<title>Something went wrong...</title>
</head>
<body>
<div class="container h-100 d-flex justify-content-center">
<div class="jumbotron my-auto">
<h1 class="display-4" style="text-align: center;">500 - Internal Server Error</h1>
<h5 style="text-align: center;">Looks like something went wrong when processing your request... Return <a
href="/" style="color: #036ffc;">home</a></p>
</div>
</div>
</body>
</html>