1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01: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

@ -219,7 +219,7 @@ else
.submit { } .submit { }
.placeholder { color: #bbb; font-style:italic } .placeholder { color: #646667; font-style:italic }
::-webkit-input-placeholder { font-style:italic; color: #bbb; } ::-webkit-input-placeholder { font-style:italic; color: #bbb; }
@ -231,6 +231,8 @@ else
#userpass {background: url(".e_IMAGE."admin_images/lock_16.png) no-repeat scroll 7px 9px; padding:7px;padding-left:30px; width:218px; } #userpass {background: url(".e_IMAGE."admin_images/lock_16.png) no-repeat scroll 7px 9px; padding:7px;padding-left:30px; width:218px; }
#code-verify { padding: 7px; width: 140px }
input[disabled] { color: silver; } input[disabled] { color: silver; }
button[disabled] span { color: silver; } button[disabled] span { color: silver; }
.title_clean { display:none; } .title_clean { display:none; }

View File

@ -199,7 +199,7 @@ class secure_image
} }
$frm = e107::getForm(); $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() function renderLabel()