aboutsummaryrefslogtreecommitdiffstats
path: root/templates/user/auth/captcha.tmpl
blob: a794c8f543ea8684b42358cbdcc6be78618e3b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{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">
		<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 df ac db-small captcha-field">
		<span>{{.locale.Tr "captcha"}}</span>
		<div class="border-secondary w-100-small" id="mcaptcha__widget-container" style="width: 50%; height: 5em"></div>
		<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"}}
	<div class="inline field captcha-field tc">
		<div id="captcha" data-captcha-type="cf-turnstile" data-sitekey="{{.CfTurnstileSitekey}}"></div>
	</div>
{{end}}{{end}}