c52ba2162e
to change the urls of the admin page, the my account page and of invites. Seems to work, but need to check all the code over and test.
18 lines
510 B
HTML
18 lines
510 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="{{ .cssClass }}">
|
|
<head>
|
|
<title>404 - jfa-go</title>
|
|
{{ template "header.html" . }}
|
|
</head>
|
|
<body class="section">
|
|
<div class="page-container m-2 lg:my-20 lg:mx-64">
|
|
<div class="card">
|
|
<h1 class="heading">Page not found.</h1>
|
|
<p class="content">
|
|
{{ .contactMessage }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|