68e934ab5d
Enable this to require captcha validation for user login. You also must enable `ENABLE_CAPTCHA`. Summary: - Consolidate CAPTCHA template - add CAPTCHA handle and context - add `REQUIRE_CAPTCHA_FOR_LOGIN` config and docs - Consolidate CAPTCHA set-up and verification code Partially resolved #6049 Signed-off-by: Xinyu Zhou <i@sourcehut.net> Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Andrew Thornton <art27@cantab.net>
24 lines
1 KiB
Handlebars
24 lines
1 KiB
Handlebars
{{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 class="g-recaptcha" data-sitekey="{{.RecaptchaSitekey}}"></div>
|
|
</div>
|
|
{{else if eq .CaptchaType "hcaptcha"}}
|
|
<div class="inline field required">
|
|
<div class="h-captcha" 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 class="m-captcha" data-sitekey="{{.McaptchaSitekey}}" data-instance-url="{{.McaptchaURL}}"></div>
|
|
</div>
|
|
{{end}}{{end}}
|