Help for this page

Select Code to Download


  1. or download this
    function do_logout() {
       $.post( "<%= url_for('on_logout') %>", function() {});
    }
    
  2. or download this
    $if_login->post('/logout')->name('on_logout')->to('user#on_logout');
    
  3. or download this
    sub on_logout {
      my $self = shift;
      $self->session(expires => 1);
      return $self->redirect_to('home');
    }