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