2022-11-23 00:13:18 +03: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 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>
{{ else if eq .CaptchaType "hcaptcha" }}
<div class="inline field 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>
{{ else if eq .CaptchaType "mcaptcha" }}
2023-02-13 20:59:59 +03:00
<div class="inline field gt-df gt-ac gt-db-small captcha-field">
2022-11-23 00:13:18 +03:00
<span> {{ .locale .Tr "captcha" }} </span>
2023-02-13 20:59:59 +03:00
<div class="gt-border-secondary gt-w-100-small" id="mcaptcha__widget-container" style="width: 50%; height: 5em"></div>
2023-02-05 10:29:03 +03: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-02-13 20:59:59 +03:00
<div class="inline field captcha-field gt-tc">
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>
{{ end }} {{ end }}