2022-11-22 22:13:18 +01:00
|
|
|
{{if .EnableCaptcha}}{{if eq .CaptchaType "image"}}
|
2024-07-05 19:10:09 +02:00
|
|
|
<div class="inline field tw-text-center">
|
2022-11-22 22:13:18 +01:00
|
|
|
{{.Captcha.CreateHTML}}
|
|
|
|
</div>
|
2024-03-06 15:20:26 +01:00
|
|
|
<div class="required field {{if .Err_Captcha}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="captcha">{{ctx.Locale.Tr "captcha"}}</label>
|
2022-11-22 22:13:18 +01:00
|
|
|
<input id="captcha" name="captcha" value="{{.captcha}}" autocomplete="off">
|
|
|
|
</div>
|
|
|
|
{{else if eq .CaptchaType "recaptcha"}}
|
2024-07-05 19:10:09 +02:00
|
|
|
<div class="inline field tw-text-center required">
|
2023-02-05 08:29:03 +01:00
|
|
|
<div id="captcha" data-captcha-type="g-recaptcha" class="g-recaptcha-style" data-sitekey="{{.RecaptchaSitekey}}"></div>
|
2022-11-22 22:13:18 +01:00
|
|
|
</div>
|
2024-01-07 16:41:46 +01:00
|
|
|
<script src='{{URLJoin .RecaptchaURL "api.js"}}'></script>
|
2022-11-22 22:13:18 +01:00
|
|
|
{{else if eq .CaptchaType "hcaptcha"}}
|
2024-07-05 19:10:09 +02:00
|
|
|
<div class="inline field tw-text-center required">
|
2023-02-05 08:29:03 +01:00
|
|
|
<div id="captcha" data-captcha-type="h-captcha" class="h-captcha-style" data-sitekey="{{.HcaptchaSitekey}}"></div>
|
2022-11-22 22:13:18 +01:00
|
|
|
</div>
|
2024-01-07 16:41:46 +01:00
|
|
|
<script src='https://hcaptcha.com/1/api.js'></script>
|
2022-11-22 22:13:18 +01:00
|
|
|
{{else if eq .CaptchaType "mcaptcha"}}
|
2024-07-05 19:10:09 +02:00
|
|
|
<div class="inline field tw-text-center">
|
2023-08-25 08:47:59 +02:00
|
|
|
<div class="m-captcha-style" id="mcaptcha__widget-container"></div>
|
|
|
|
<div id="captcha" data-captcha-type="m-captcha" data-sitekey="{{.McaptchaSitekey}}" data-instance-url="{{.McaptchaURL}}"></div>
|
2023-02-05 08:29:03 +01:00
|
|
|
</div>
|
|
|
|
{{else if eq .CaptchaType "cfturnstile"}}
|
2024-03-04 04:33:20 +01:00
|
|
|
<div class="inline field tw-text-center">
|
2023-02-05 08:29:03 +01:00
|
|
|
<div id="captcha" data-captcha-type="cf-turnstile" data-sitekey="{{.CfTurnstileSitekey}}"></div>
|
2022-11-22 22:13:18 +01:00
|
|
|
</div>
|
2024-01-07 16:41:46 +01:00
|
|
|
<script src='https://challenges.cloudflare.com/turnstile/v0/api.js'></script>
|
2022-11-22 22:13:18 +01:00
|
|
|
{{end}}{{end}}
|