mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-09 20:00:12 +00:00
Harvey Tindall
95db48d8f8
the backend code has been added back in, and the build process has been modified so that no output files are left outside of build/. Admin page loads and logs in correctly, nothing else functionality-wise yet.
21 lines
574 B
HTML
21 lines
574 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Invalid Code - jfa-go</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ .cssFile }}">
|
|
{{ template "header.html" . }}
|
|
<style>
|
|
.messageBox {
|
|
margin: 20%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="messageBox">
|
|
<h1>Invalid Code.</h1>
|
|
<p>The above code is either incorrect, or has expired.</p>
|
|
<p>{{ .contactMessage }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|