2022-11-22 21:13:18 +00:00
|
|
|
{{if .EnableCaptcha}}{{if eq .CaptchaType "image"}}
|
|
|
|
<div class="inline field">
|
|
|
|
<label>{{/* This is CAPTCHA field */}}</label>
|
|
|
|
{{.Captcha.CreateHTML}}
|
|
|
|
</div>
|
|
|
|
<div class="required inline field {{if .Err_Captcha}}error{{end}}">
|
2023-09-25 13:15:51 +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"}}
|
|
|
|
<div class="inline field 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>
|
|
|
|
{{else if eq .CaptchaType "hcaptcha"}}
|
|
|
|
<div class="inline field 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>
|
|
|
|
{{else if eq .CaptchaType "mcaptcha"}}
|
2023-08-25 06:47:59 +00:00
|
|
|
<div class="inline field">
|
|
|
|
<label></label>
|
|
|
|
<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"}}
|
2023-08-25 06:47:59 +00:00
|
|
|
<div class="inline field gt-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>
|
|
|
|
{{end}}{{end}}
|