diff options
author | Fluf <36822577+flufmonster@users.noreply.github.com> | 2018-07-05 00:13:05 -0400 |
---|---|---|
committer | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-07-05 00:13:05 -0400 |
commit | f035dcd4f221a631cc499d90661237d6cf601843 (patch) | |
tree | 18f7cfd148dd36c85e4c82c8cd5fdef88c249606 /templates/base | |
parent | 54fedd4070be9819a6dd4e441b3c5689334eae9d (diff) | |
download | gitea-f035dcd4f221a631cc499d90661237d6cf601843.tar.gz gitea-f035dcd4f221a631cc499d90661237d6cf601843.zip |
Add Recaptcha functionality to Gitea (#4044)
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/footer.tmpl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/base/footer.tmpl b/templates/base/footer.tmpl index ed4e75ffc9..a23ae57303 100644 --- a/templates/base/footer.tmpl +++ b/templates/base/footer.tmpl @@ -67,6 +67,11 @@ {{if .RequireU2F}} <script src="{{AppSubUrl}}/vendor/plugins/u2f/index.js"></script> {{end}} +{{if .EnableCaptcha}} + {{if eq .CaptchaType "recaptcha"}} + <script src="https://www.google.com/recaptcha/api.js" async></script> + {{end}} +{{end}} {{if .RequireTribute}} <script src="{{AppSubUrl}}/vendor/plugins/tribute/tribute.min.js"></script> |