You are here

function theme_lt_password_title in LoginToboggan 7

Same name and namespace in other branches
  1. 5 logintoboggan.module \theme_lt_password_title()
  2. 6 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
Implement hook_form_alter().

File

./logintoboggan.module, line 1262
LoginToboggan module

Code

function theme_lt_password_title($variables) {

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