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

21 lines
480 B
HTML

<head>
<title>{} {}</title>
<style>
body {{
font-sans m-[40px] text-center
}}
.container {{
bg-white p-12 px-10 rounded-[8px] max-w-[500px]
}}
h1 {{ text-[#d32f2f] mb-[20px] }}
p {{ text-[#555555] mb-[30px] }}
a {{ text-[#0066cc] }}
</style>
</head>
<body>
<div class="container">
<h1>{} {}</h1>
<p>{}</p>
<p><a href="/">Back to home</a></p>
</div>
</body>