You are here

function email_registration_form_user_login_block_alter in Email Registration 6

Same name and namespace in other branches
  1. 7 email_registration.module \email_registration_form_user_login_block_alter()

Implementation of hook_form_FORMID_alter().

File

./email_registration.module, line 138
For registration process without a username

Code

function email_registration_form_user_login_block_alter(&$form, $form_state) {
  $form['name']['#title'] = t('E-mail');
  $form['name']['#element_validate'][] = 'email_registration_user_login_validate';
}