mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 00:47:25 -06:00
28 lines
979 B
HTML
28 lines
979 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Not Found | Shlink</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<style>
|
|
html, body {height: 100%}
|
|
.app {height: 100vh; display: flex; align-items: center; justify-content: center; flex-flow: column;}
|
|
p {margin-bottom: 20px;}
|
|
body {text-align: center;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<main class="container">
|
|
<h1>404</h1>
|
|
<hr>
|
|
<h3>Page not found.</h3>
|
|
<p>The page you requested could not be found.</p>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|