summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/captcha.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /templates/user/auth/captcha.tmpl
parentInitial commit. (diff)
downloadforgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.tar.xz
forgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'templates/user/auth/captcha.tmpl')
-rw-r--r--templates/user/auth/captcha.tmpl30
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/user/auth/captcha.tmpl b/templates/user/auth/captcha.tmpl
new file mode 100644
index 0000000..03e3607
--- /dev/null
+++ b/templates/user/auth/captcha.tmpl
@@ -0,0 +1,30 @@
+{{if .EnableCaptcha}}{{if eq .CaptchaType "image"}}
+ <div class="inline field tw-text-center">
+ <input type="hidden" name="img-captcha-id" value="{{.Captcha}}">
+ <img style="transform: scaleX(-1)" onclick="this.src=`{{AppSubUrl}}/captcha/{{.Captcha}}.png?reload=${Date.now()}`" class="captcha-img" src="{{AppSubUrl}}/captcha/{{.Captcha}}.png">
+ </div>
+ <div class="required field {{if .Err_Captcha}}error{{end}}">
+ <label for="captcha">{{ctx.Locale.Tr "captcha"}}</label>
+ <input id="captcha" name="img-captcha-response" autocomplete="off">
+ </div>
+{{else if eq .CaptchaType "recaptcha"}}
+ <div class="inline field tw-text-center required">
+ <div id="captcha" data-captcha-type="g-recaptcha" class="g-recaptcha-style" data-sitekey="{{.RecaptchaSitekey}}"></div>
+ </div>
+ <script src='{{URLJoin .RecaptchaURL "api.js"}}'></script>
+{{else if eq .CaptchaType "hcaptcha"}}
+ <div class="inline field tw-text-center required">
+ <div id="captcha" data-captcha-type="h-captcha" class="h-captcha-style" data-sitekey="{{.HcaptchaSitekey}}"></div>
+ </div>
+ <script src='https://hcaptcha.com/1/api.js'></script>
+{{else if eq .CaptchaType "mcaptcha"}}
+ <div class="inline field tw-text-center">
+ <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 tw-text-center">
+ <div id="captcha" data-captcha-type="cf-turnstile" data-sitekey="{{.CfTurnstileSitekey}}"></div>
+ </div>
+ <script src='https://challenges.cloudflare.com/turnstile/v0/api.js'></script>
+{{end}}{{end}}