mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
597b04fe2f
Backport #27231 #27259 manually --------- Co-authored-by: delvh <dev.lh@web.de>
28 lines
1.3 KiB
Go HTML Template
28 lines
1.3 KiB
Go HTML Template
{{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">{{ctx.Locale.Tr "captcha"}}</label>
|
|
<input id="captcha" name="captcha" value="{{.captcha}}" autocomplete="off">
|
|
</div>
|
|
{{else if eq .CaptchaType "recaptcha"}}
|
|
<div class="inline field required">
|
|
<div id="captcha" data-captcha-type="g-recaptcha" class="g-recaptcha-style" data-sitekey="{{.RecaptchaSitekey}}"></div>
|
|
</div>
|
|
{{else if eq .CaptchaType "hcaptcha"}}
|
|
<div class="inline field required">
|
|
<div id="captcha" data-captcha-type="h-captcha" class="h-captcha-style" data-sitekey="{{.HcaptchaSitekey}}"></div>
|
|
</div>
|
|
{{else if eq .CaptchaType "mcaptcha"}}
|
|
<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>
|
|
</div>
|
|
{{else if eq .CaptchaType "cfturnstile"}}
|
|
<div class="inline field gt-text-center">
|
|
<div id="captcha" data-captcha-type="cf-turnstile" data-sitekey="{{.CfTurnstileSitekey}}"></div>
|
|
</div>
|
|
{{end}}{{end}}
|