/**
  * Resets user's password.
  *
  * @return bool
  */
 public function resetPassword()
 {
     if ($this->validate()) {
         $this->_user->resetPassword($this->password);
         return true;
     }
     return false;
 }