AccountRequest
FormDescriptionHelpPreLogicPostLogic
AccountRequestRequest a ProMan accountIf you do not already have a ProMan account use this form to request one. Once you have submitted the form the account will need to be approved.

Once your account is approved you will receive an email letting you know the account is ready for use.

Once you have entered the information click on the diskette on the bottom left.
The mesage area on the bottom right should say Responses saved. At that point you can click on the to exit.

if ($ERRORS==0) { $sql=~select count(*) from Users where username='~ . $_REQUEST[~UserName~] . ~'~; if (ShowQueryResultScalar($sql) == 0) { $sql = ~insert into Users(lastname,firstname,email,username,password,isdeleted,unit) ~ . ~select '~ . $_REQUEST[~LastName~] . ~','~ . $_REQUEST[~FirstName~] . ~','~ . $_REQUEST[~Email~] . ~','~ . $_REQUEST[~UserName~] . ~','temp4pwd','1','~ . $_REQUEST[~Affiliation~] . ~'~; $stat=ExecuteSQL($sql); $stat=MailSend($_SESSION['PM_EMAIL'], $_SESSION['PM_EMAIL'], ~ProMan account request~, $sql . ~: ~ . $_SESSION[~ProjectId~]); $stat=MailSend($_SESSION['PM_EMAIL'], $_REQUEST[~Email~], ~ProMan account request~, ~Your Account Request for username '~ . $_REQUEST[~UserName~] . ~' was submitted to the ProMan administrator. Your password is 'temp4pwd' You will receive another email when the account is activated. Thank you.~); AlertCustom('Mail', ~

Your account request has been submitted.

An email has been sent to your address.

Thank you.

~); $stat=1; } else { AlertCustom('Mail ERROR',~

ID: ~ . $_REQUEST[~UserName~] . ~ has already been taken.

~); $stat=0; } }