Help for this page

Select Code to Download


  1. or download this
        # Are we logged in?  If not, redirect someplace sane!
        unless(user_is_logged_in())
    ...
            $self->header_props(-url => "/cgi-bin/users.cgi?rm=login");
            return "Please wait. . .";
        }
    
  2. or download this
        # Check for username and password
        my $username = untaint_string($request->param("username")) || "";
    ...
        }
    
        return $page;