diff --git a/core/modules/user/user.pages.inc b/core/modules/user/user.pages.inc
index 1d85562..471b7c1 100644
--- a/core/modules/user/user.pages.inc
+++ b/core/modules/user/user.pages.inc
@@ -92,6 +92,7 @@ function user_pass_submit($form, &$form_state) {
 function user_pass_reset($form, &$form_state, $uid, $timestamp, $hashed_pass) {
   global $user;
 
+  
   // When processing the one-time login link, we have to make sure that a user
   // isn't already logged in.
   if ($user->uid) {
@@ -103,11 +104,11 @@ function user_pass_reset($form, &$form_state, $uid, $timestamp, $hashed_pass) {
     else {
       $reset_link_account = user_load($uid);
       if (!empty($reset_link_account)) {
-        drupal_set_message(t('Another user (%other_user) is already logged into the site on this computer, but you tried to use a one-time link for user %resetting_user. Please <a href="!logout">logout</a> and try using the link again.',
+        drupal_set_message(t('Another user (%other_user) is already logged into the site on this computer, but you tried to use a reset password link for user %resetting_user. Please <a href="!logout">logout</a> and try using the link again.',
           array('%other_user' => $user->name, '%resetting_user' => $reset_link_account->name, '!logout' => url('user/logout'))));
       } else {
         // Invalid one-time link specifies an unknown user.
-        drupal_set_message(t('The one-time login link you clicked is invalid.'));
+        drupal_set_message(t('The reset password link you clicked is invalid.'));
       }
     }
     drupal_goto();
@@ -121,14 +122,15 @@ function user_pass_reset($form, &$form_state, $uid, $timestamp, $hashed_pass) {
     if ($timestamp <= $current && $account = reset($users)) {
       // No time out for first time login.
       if ($account->login && $current - $timestamp > $timeout) {
-        drupal_set_message(t('You have tried to use a one-time login link that has expired. Please request a new one using the form below.'));
+        drupal_set_message(t('You have tried to use a reset password link that has expired. Please request a new one using the form below.'));
         drupal_goto('user/password');
       }
       elseif ($account->uid && $timestamp >= $account->login && $timestamp <= $current && $hashed_pass == user_pass_rehash($account->pass, $timestamp, $account->login)) {
+        
         return _user_pass_reset_form($account, $timestamp);
       }
       else {
-        drupal_set_message(t('You have tried to use a one-time login link that has either been used or is no longer valid. Please request a new one using the form below.'));
+        drupal_set_message(t('You have tried to use a reset password link that has either been used or is no longer valid. Please request a new one using the form below.'));
         drupal_goto('user/password');
       }
     }
@@ -149,10 +151,31 @@ function user_pass_reset($form, &$form_state, $uid, $timestamp, $hashed_pass) {
  *   The timestamp when the login link expires. Used only to display.
  */
 function _user_pass_reset_form($account, $expire) {
-  $form['message'] = array('#markup' => t('<p>This is a one-time login for %user_name and will expire on %expiration_date.</p>', array('%user_name' => $account->name, '%expiration_date' => format_date($expire))));
-  $form['help'] = array('#markup' => '<p>' . t('This login can be used only once.') . '</p>');
-  $form['pass'] = array('#type' => 'password_confirm', '#required' => TRUE);
-  $form['submit'] = array('#type' => 'submit', '#value' => t('Change password and log in'));
+  //drupal_set_message('<pre>' . print_r($account, 1) . '</pre>');
+  
+  //If user has never logged in, they are "creating" a password.
+  if ($account->login == 0){
+    drupal_set_title(t('Create Password'));
+  }
+  
+  $form['message'] = array(
+    '#type' => 'html_tag',
+    '#tag' => 'p',
+    '#value' => t('Create a new password for your @s account using the form below.',  array('@s' => variable_get('site_name', 'Drupal'))),
+  );
+  $form['name'] = array(
+    '#type' => 'item',
+    '#title' => t('Username'),
+    '#markup' => $account->name .' '. l(t('Not You?'), 'user/password'),
+  );
+  $form['pass'] = array(
+    '#type' => 'password_confirm',
+    '#required' => TRUE
+  );
+  $form['submit'] = array(
+    '#type' => 'submit',
+    '#value' => t('@change password and log in', array('@change' => $account->login == 0? t('Create'): t('Change'))),
+  );
   $form['#account'] = $account;
   $form['#redirect'] = "user/$account->uid";
   return $form;
@@ -164,11 +187,10 @@ function _user_pass_reset_form($account, $expire) {
 function user_pass_reset_submit($form, $form_state) {
   global $user;
   watchdog('user', 'User %name used one-time login link at time %timestamp.', array('%name' => $form['#account']->name, '%timestamp' => REQUEST_TIME));
-  drupal_set_message(t('You have just used your one-time login link. It is no longer possible to use this link to login.'));
   // Set the new user.
   $user = $form['#account'];
   user_save($user, array('pass' => $form_state['values']['pass']));
-  drupal_set_message(t('Password changed.'));
+  drupal_set_message(t('Your password has been changed.'));
   // user_login_finalize() also updates the login timestamp of the
   // user, which invalidates further use of the one-time login link.
   user_login_finalize();
