#!C:/perl/bin/perl.exe use CGI; $query = new CGI; $pin= $query->param('pin'); $password= $query->param('password'); print $query->header; print $query->start_html(-title=>'pindemosurvey'); print "
"; print ""; print "Survey Questions appear here.
"; print ""; print ""; print ""; print ""; print "
"; print $query->end_html;