Guest User

Untitled

a guest
Feb 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /**
  2.  * Implements hook_form_FORM_ID_alter().
  3.  *
  4.  * User register form.
  5.  */
  6. function hook_form_user_register_form_alter(&$form, $form_state) {
  7.   // Override text and FAPI settings.
  8.   $form['account']['pass']['#type'] = 'password';
  9.   $form['account']['pass']['#title'] = t('Password');
Add Comment
Please, Sign In to add comment