#!/usr/bin/perl use strict; #use lib 'C:\Inetpub\wwwroot\Sites\asp\techdex\projects\forums\cgi-bin\forums\.'; use lib '.'; use MyBoard; my($i); # $cgi->param returns an array of the input field names. foreach $i ($cgi->param()) { if ($cgi->param($i) =~ /^\s*$/) { &dienice("$i was blank - please fill out all of the fields."); } } my($user) = $cgi->param('username'); &do_header("$btitle"); my($workflow) = ($cgi->param('workflow')); print qq(
Don't have a username? Register or view as a guest.
Username:
Password:
 
 $workflow
  1. Usernames and passwords are CaSe sEnSiTiVe!
  2. To create your free account, click here.
  3. To retrieve your username or password, click here.
); &do_footer;