all repos — felt @ main

virtual tabletop for dungeons and dragons (and similar) using Go, MongoDB, and websockets

templates/error.html (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ $params := (.Context).Value "params" }}

<html lang="en-US">
  <head>
    <meta charset="UTF-8" />
    <title>Felt &mdash; Error</title>
    <meta name="viewport" content="width=device-width" />
    <link rel="shortcut icon" href="/table/favicon.png"/>
    <link href="/table/style.css?v=0.2.2" rel="stylesheet" />
  </head>
<body>
<main id="registration">
<h1>ERROR {{ $params.ErrorCode }}</h1>
<p class="error">{{ $params.ErrorMessage }}</p>
<p><a href="/table">Get back to gaming...</a></p>
</main>
</body>
<script src="./util.js?v=0.2.5" type="text/javascript"></script>
</html>
<html>