#!/usr/bin/perl -w use CGI qw(:standard -debug); use CGI::Pretty ":standard"; use CGI::Carp qw(fatalsToBrowser); ########### Credits ################# # Script written by R. Todd Vandenbark # and Crystal White ##################################### # Set stylesheet $css = ''; $logo = ''; $form1 = '../../bsu_studylog.html'; $title = 'Log Out'; $subtitle = 'You are now logged out of the system.'; $cookie_user = cookie(-name => 'studylog_username', -expires => "-1h", -value => '' ); $cookie_pwd = cookie(-name => 'studylog_passwd', -expires => "-1h", -value => '' ); print header(-cookie => [$cookie_user, $cookie_pwd]); print start_html (-title => $title, -head => $css, -class => 'oneColFixCtrHdr'); print '
' . "\n"; print '
' . "\n"; print h2("$subtitle"); print "\n"; print qq|

Back to Main Login page.

|; print "\n"; print '
' . "\n". ''. "\n" . '
' . "\n"; print end_html();