mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00:00
19 lines
820 B
HTML
19 lines
820 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" class="{{ .cssClass }}">
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="css/bundle.css">
|
||
|
{{ template "header.html" . }}
|
||
|
<title>{{ .strings.successHeader }} - jfa-go</title>
|
||
|
</head>
|
||
|
<body class="section">
|
||
|
<div class="page-container">
|
||
|
<div class="card ~neutral !normal mb-1">
|
||
|
<span class="heading mb-1">{{ .strings.successHeader }}</span>
|
||
|
<p class="content mb-1">{{ .successMessage }}</p>
|
||
|
<a class="button ~urge !normal full-width center supra submit" href="{{ .jfLink }}" id="create-success-button">{{ .strings.successContinueButton }}</a>
|
||
|
</div>
|
||
|
<i class="content">{{ .contactMessage }}</i>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|