mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-12-22 09:00:10 +00:00
Harvey Tindall
4014e93155
can be enabled in settings > captcha, requires a site key & secret key from google. New wiki article explains getting these. currently a little ugly looking on the page itself, hopefully fixable.
50 lines
2.0 KiB
HTML
50 lines
2.0 KiB
HTML
{{ define "form-base" }}
|
|
<script>
|
|
window.usernameEnabled = {{ .username }};
|
|
window.validationStrings = JSON.parse({{ .validationStrings }});
|
|
window.invalidPassword = "{{ .strings.reEnterPasswordInvalid }}";
|
|
window.URLBase = "{{ .urlBase }}";
|
|
window.code = "{{ .code }}";
|
|
window.language = "{{ .langName }}";
|
|
window.messages = JSON.parse({{ .notifications }});
|
|
window.confirmation = {{ .confirmation }};
|
|
window.userExpiryEnabled = {{ .userExpiry }};
|
|
window.userExpiryMonths = {{ .userExpiryMonths }};
|
|
window.userExpiryDays = {{ .userExpiryDays }};
|
|
window.userExpiryHours = {{ .userExpiryHours }};
|
|
window.userExpiryMinutes = {{ .userExpiryMinutes }};
|
|
window.userExpiryMessage = {{ .userExpiryMessage }};
|
|
window.telegramEnabled = {{ .telegramEnabled }};
|
|
window.telegramRequired = {{ .telegramRequired }};
|
|
window.telegramPIN = "{{ .telegramPIN }}";
|
|
window.emailRequired = {{ .emailRequired }};
|
|
window.discordEnabled = {{ .discordEnabled }};
|
|
window.discordRequired = {{ .discordRequired }};
|
|
window.discordPIN = "{{ .discordPIN }}";
|
|
window.discordInviteLink = {{ .discordInviteLink }};
|
|
window.discordServerName = "{{ .discordServerName }}";
|
|
window.matrixEnabled = {{ .matrixEnabled }};
|
|
window.matrixRequired = {{ .matrixRequired }};
|
|
window.matrixUserID = "{{ .matrixUser }}";
|
|
window.captcha = {{ .captcha }};
|
|
window.reCAPTCHA = {{ .reCAPTCHA }};
|
|
window.reCAPTCHASiteKey = "{{ .reCAPTCHASiteKey }}";
|
|
</script>
|
|
{{ if .passwordReset }}
|
|
<script src="js/pwr.js" type="module"></script>
|
|
{{ else }}
|
|
<script src="js/form.js" type="module"></script>
|
|
{{ if .reCAPTCHA }}
|
|
<script>
|
|
var reCAPTCHACallback = () => {
|
|
const el = document.getElementsByClassName("g-recaptcha")[0];
|
|
grecaptcha.render(el, {
|
|
"sitekey": window.reCAPTCHASiteKey
|
|
});
|
|
}
|
|
</script>
|
|
<script src="https://www.google.com/recaptcha/api.js?onload=reCAPTCHACallback&render=explicit" async defer></script>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|