Ejemplo n.º 1
0
 /**
  * Reset Password Action
  *
  * Handles the trigger of the reset, also takes the token, validates it and let the user enter
  * a new password.
  *
  * @param string $token Token
  * @param string $user User Data
  * @return void
  */
 public function reset_password($token = null, $user = null)
 {
     $this->layout = 'Dashboard.user';
     parent::reset_password($token, $user);
 }