monofile/src/error.html
Jack W. 6220cd8b0f
refactor: ♻️ Use Vite instead of Rollup
Soon: Hono instead of Express
2023-10-24 17:18:36 -04:00

42 lines
779 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="./style/error.scss"
>
<link
rel="icon"
type="image/svg"
href="/static/assets/icons/error.svg"
>
<link
rel="stylesheet"
href="/auth/customCSS"
>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=0"
>
<title>$code</title>
<meta name="theme-color" content="rgb(30, 33, 36)">
</head>
<body>
<p class="error">
<span class="code">$code</span>
&nbsp;$text
</p>
</body>
</html>