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

21 lines
480 B
HTML
Raw Normal View History

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