2021-03-30 21:41:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="{{ .cssClass }}">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/bundle.css">
|
|
|
|
{{ template "header.html" . }}
|
|
|
|
<title>{{ .strings.passwordReset }} - jfa-go</title>
|
|
|
|
</head>
|
|
|
|
<body class="section">
|
|
|
|
{{ if .success }}
|
|
|
|
<div id="notification-box">
|
|
|
|
<span id="copy-notification" class="unfocused">{{ .strings.copied }}</span>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
<div class="page-container">
|
|
|
|
<div class="card ~neutral !normal mb-1">
|
|
|
|
<span class="heading mb-1">
|
|
|
|
{{ if .success }}
|
|
|
|
{{ .strings.passwordReset }}
|
|
|
|
{{ else }}
|
|
|
|
{{ .strings.resetFailed }}
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
<p class="content mb-1">
|
|
|
|
{{ if .success }}
|
2021-05-02 12:23:59 +00:00
|
|
|
{{ if .ombiEnabled }}
|
|
|
|
{{ .strings.youCanLoginOmbi }}
|
|
|
|
{{ else }}
|
2021-03-30 21:41:28 +00:00
|
|
|
{{ .strings.youCanLogin }}
|
2021-05-02 12:23:59 +00:00
|
|
|
{{ end }}
|
2021-03-30 21:41:28 +00:00
|
|
|
{{ else }}
|
|
|
|
{{ .strings.tryAgain }}
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ if .success }}
|
|
|
|
<aside class="aside ~warning">
|
|
|
|
{{ .strings.changeYourPassword }}
|
|
|
|
</aside>
|
|
|
|
<span class="button ~urge !normal full-width center supra p-1 mt-1" id="pin" title="{{ .strings.copy }}">{{ .pin }}</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
<i class="content">{{ .contactMessage }}</i>
|
|
|
|
</div>
|
|
|
|
<script src="{{ .urlBase }}/js/pwr.js" type="module"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|