securimage captcha

This commit is contained in:
h00j
2021-11-13 01:24:34 +01:00
parent 9745e9d854
commit a3dc72bddb
7 changed files with 172 additions and 20 deletions

View File

@@ -25,7 +25,7 @@ function load_captcha(provider, extra) {
$(function() {
$(".captcha>td").html("<input class='captcha_text' type='text' name='captcha_text' size='32' maxlength='6' autocomplete='off'>"+
"<input class='captcha_cookie' name='captcha_cookie' type='hidden'>"+
"<div class='captcha_html'></div>");
"<div class='captcha_html'><img src='/static/clickme.gif'></div>");
$("#quick-reply .captcha .captcha_text").prop("placeholder", _("Verification"));
@@ -40,4 +40,4 @@ function load_captcha(provider, extra) {
$("#quick-reply .captcha .captcha_html").on("click", function() { actually_load_captcha(provider, extra); });
});
});
}
}