#!/usr/bin/perl -w use CGI qw(:standard); if(param('error') eq "yes") { $error=qq(

                                        Invalid User-ID/Password

); } else { $error='';} ($extra,$iduser)=split('=',$ENV{'HTTP_COOKIE'}); if(length($iduser)==0) { print header; print <<"RRR"; E-Mail

E-Mail

Home
Members
E-Mail
Archive
Project Information
Contact Information

 

$error
Please enter User-ID and Password for login......

                                        User-ID:   

                                        Password:

                                                                

                                          Forget Password click here.

                                          Change Password click here.

                                          Registration E-Mail ID & Webhosting Click here.

                                         

Home | Members | E-Mail | Archive | Project Information | Contact Information

 

RRR } else { print "Location: http://www.myproject.com/service/mail\n\n"; exit; }