function theme_user_pass in Drupal 4
File
- modules/
user.module, line 1095 - Enables the user registration and login system.
Code
function theme_user_pass($form) {
$output = '<p>' . t('Enter your username <strong><em>or</em></strong> your e-mail address.') . '</p>';
$output .= form_render($form);
return $output;
}