mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-19 00:57:37 +01:00
checking with a list I found online. need to set some things as forced ltr, such as settings. For #450.
19 lines
672 B
HTML
19 lines
672 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .shortLang }}" dir="{{ .pageDirection }}" 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>
|