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.
19 lines
631 B
HTML
19 lines
631 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="{{ .cssClass }}">
|
|
<head>
|
|
{{ template "header.html" . }}
|
|
<title>Invalid Code - jfa-go</title>
|
|
</head>
|
|
<body class="section">
|
|
<div class="page-container m-2 lg:my-20 lg:mx-64">
|
|
<div class="card">
|
|
<h1 class="text-3xl font-semibold">Invalid invite code.</h1>
|
|
<p class="content">The code above was either incorrect, or has expired.</p>
|
|
<p class="content">
|
|
{{ .contactMessage }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|