Same name and namespace in other branches
  1. 4.6.x modules/user.module \user_pass()
  2. 4.7.x modules/user.module \user_pass()
  3. 6.x modules/user/user.pages.inc \user_pass()
  4. 7.x modules/user/user.pages.inc \user_pass()
1 string reference to 'user_pass'
user_menu in modules/user/user.module
Implementation of hook_menu().

File

modules/user/user.module, line 1053
Enables the user registration and login system.

Code

function user_pass() {

  // Display form:
  $form['name'] = array(
    '#type' => 'textfield',
    '#title' => t('Username or e-mail address'),
    '#size' => 60,
    '#maxlength' => max(USERNAME_MAX_LENGTH, EMAIL_MAX_LENGTH),
    '#required' => TRUE,
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('E-mail new password'),
    '#weight' => 2,
  );
  return $form;
}