user_login

  1. drupal
    1. 6 user.module function
    2. 7 user.module function
Drupal 7 user_login($form, &$form_state)

Form builder; the main user login form.

Related topics

19 string references to 'user_login'

File

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

Code

function user_login($form, &$form_state) {
  global $user;

  // If we are already logged on, go to the user page instead.
  if ($user->uid) {
    drupal_goto('user/' . $user->uid);
  }

  // Display login form:
  $form['name'] = array(
    '#type' => 'textfield', 
    '#title' => t('Username'), 
    '#size' => 60, 
    '#maxlength' => USERNAME_MAX_LENGTH, 
    '#required' => TRUE,
  );

  $form['name']['#description'] = t('Enter your @s username.', array('@s' => variable_get('site_name', 'Drupal')));
  $form['pass'] = array(
    '#type' => 'password', 
    '#title' => t('Password'), 
    '#description' => t('Enter the password that accompanies your username.'), 
    '#required' => TRUE,
  );
  $form['#validate'] = user_login_default_validators();
  $form['actions'] = array('#type' => 'actions');
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Log in'),
  );

  return $form;
}