statsys/www/error.html

49 lines
877 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>error - {{ .Title }}</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="/styles.css" />
<style>
body {
align-items: center;
}
main {
display: flex;
flex-direction: column;
width: 24rem;
padding: 1rem 2rem;
background-color: white;
z-index: 1;
outline: 1px solid rgba(0, 0, 0, 0.04);
}
span {
font-size: 4rem;
font-weight: 700;
}
h1 {
margin-bottom: 0;
font-weight: 800;
}
p {
margin-top: 0.5rem;
line-height: 1.5rem;
}
</style>
</head>
<body>
<main>
<span>(𖦹﹏𖦹;)</span>
<h1>error — trafficlunar</h1>
<p>{{ .Error }}</p>
</main>
</body>
</html>