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
753 B
HTML
18 lines
753 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="{{ .cssClass }}">
|
|
<head>
|
|
{{ template "header.html" . }}
|
|
<title>{{ .strings.successHeader }} - jfa-go</title>
|
|
</head>
|
|
<body class="section">
|
|
<div class="page-container m-2 lg:my-20 lg:mx-64">
|
|
<div class="card ~neutral @low mb-4">
|
|
<span class="heading mb-4">{{ .strings.successHeader }}</span>
|
|
<p class="content my-4">{{ .successMessage }}</p>
|
|
<a class="button ~urge @high full-width center supra submit" href="{{ .jfLink }}" id="create-success-button">{{ .strings.continue }}</a>
|
|
</div>
|
|
<i class="content">{{ .contactMessage }}</i>
|
|
</div>
|
|
</body>
|
|
</html>
|