Files
leonwww/protocol/cli/templates/404.html

25 lines
569 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<style>
body {{
font-sans m-[40px] text-center
}}
.container {{
bg-white p-12 px-10 rounded-[8px] max-w-[500px]
}}
h1 {{ mb-[20px] }}
p {{ text-[#555555] mb-[30px] }}
a {{ text-[#0066cc] }}
</style>
</head>
<body>
<div class="container">
<h1>404 Page Not Found</h1>
<p>The requested path was not found on this GURT server.</p>
<p><a href="/">Back to home</a></p>
</div>
</body>
</html>