added remove of mongodb data after captcha response, fixed typo in js, updated readme

This commit is contained in:
arnaucode
2018-09-02 13:20:38 +02:00
parent 9262080f54
commit 5d1a3493d7
4 changed files with 18 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ function getCaptcha() {
function showCaptcha(captcha) {
var html;
html = "";
html += "<h2>Select all " + captcha.question + "s</h2>";
html += "<h2>Select all " + captcha.question + "</h2>";
for (k in captcha.imgs) {
html += "<img id='" + k + "' onclick='selectCaptchaImg(this)' src='" + goCaptchaURL + "/image/" + captcha.imgs[k] + "' style='width:120px;cursor:pointer;' class='g_unselected' />";
}