You are here

function theme_lt_password_title in LoginToboggan 5

Same name and namespace in other branches
  1. 6 logintoboggan.module \theme_lt_password_title()
  2. 7 logintoboggan.module \theme_lt_password_title()

Theme the password title of the user login form and the user login block.

1 theme call to theme_lt_password_title()
logintoboggan_form_alter in ./logintoboggan.module
Implementation of hook_form_alter()

File

./logintoboggan.module, line 1141
Logintoboggan Module

Code

function theme_lt_password_title($form_id) {

  // Label text for the password field.
  return t('Password');
}