#!/usr/bin/perl ## This is the TEMPLATE MODUAL for the SIGNUP SCREEN ## This is in CGI FORMAT. Please edit the information within the print statements below. ## Please note, you CANNOT put any quotes or '@' symbols within the print statements. ## To edit, you MUST edit the code between the print statements. print " Please fill out the form below to create your account.

"; if ($FORM{'command'} eq "addaccount") { if ($FORM{'username'} eq "") { } if ($FORM{'pass'} ne "") { &addaccount; } else { } } print "
Username: - Must be ONE WORD only!
Password: - Must be ONE WORD only!

Profile setup -

The following information is optional info which is used for your personal profile. Users can gain access to this profile at any time.
Your name:
Country:
City:
State:
Age:
Gender:
Favorite music:
Picture URL: "; if ($FORM{'pict'} eq "") { print "
Example: Http://www.server.com/mypic.gif
"; } else { print "
"; } print "Personal quote:
E-mail:

";