You are here

function simplelogin_set_captcha in SimpleLogin 7

Add Placeholders, Title(invisible), Description(hide) to captcha input field.

1 string reference to 'simplelogin_set_captcha'
simplelogin_form_alter in ./simplelogin.module
Implements hook_form_alter().

File

./simplelogin.module, line 94
The Login screens, which controls the customized background image.

Code

function simplelogin_set_captcha(&$element) {
  $element['captcha_widgets']['captcha_response']['#attributes']['placeholder'] = t('Verification Code');
  $element['captcha_widgets']['captcha_response']['#title_display'] = 'invisible';
  $element['captcha_widgets']['captcha_response']['#description'] = '';
  return $element;
}