1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

CAPTCHA on admin login page css styling

This commit is contained in:
Cameron
2013-09-17 10:07:59 -07:00
parent 54c0bbe4b6
commit 9e6350cdbe
2 changed files with 4 additions and 2 deletions

View File

@@ -199,7 +199,7 @@ class secure_image
}
$frm = e107::getForm();
return $frm->hidden("rand_num", $this->random_number).$frm->text("code_verify", "", 20, array("size"=>20,"title"=> LAN_ENTER_CODE,'required'=>1));
return $frm->hidden("rand_num", $this->random_number).$frm->text("code_verify", "", 20, array("size"=>20,"title"=> LAN_ENTER_CODE,'required'=>1, 'placeholder'=>LAN_ENTER_CODE));
}
function renderLabel()