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