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}}">
|
|
|
|
<label for="captcha">{{.locale.Tr "captcha"}}</label>
|
|
|
|
<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-02-13 17:59:59 +00:00
|
|
|
<div class="inline field gt-df gt-ac gt-db-small captcha-field">
|
2022-11-22 21:13:18 +00:00
|
|
|
<span>{{.locale.Tr "captcha"}}</span>
|
2023-02-13 17:59:59 +00:00
|
|
|
<div class="gt-border-secondary gt-w-100-small" id="mcaptcha__widget-container" style="width: 50%; height: 5em"></div>
|
2023-02-05 07:29:03 +00:00
|
|
|
<div id="captcha" data-captcha-type="m-captcha" class="m-captcha" data-sitekey="{{.McaptchaSitekey}}" data-instance-url="{{.McaptchaURL}}"></div>
|
|
|
|
</div>
|
|
|
|
{{else if eq .CaptchaType "cfturnstile"}}
|
2023-07-09 22:19:24 +00:00
|
|
|
<div class="inline field captcha-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}}
|