RECOGNIZING REPEAT CUSTOMERS

You may wish to have your return customers enter in a login and password that was given at the time of the original order when completing a new purchase. You will need to include the following lines of code on your subtotal page:

Login: <input type="text" name="login" size="25">
Password: <input type="text" name="password" size="25">

If your customer has forgotten their login & password, rememberme.exe is a function which recalls their login and password and emails it to them. Set up a page that has the following lines of code and link it from your subtotal page:

Forgotten your login & password?
Enter your email address and we'll send it to you:
<FORM METHOD="POST" ACTION="/cgi-bin/rememberme.exe">
<input type="text" name="EmailAccount">
<input type="hidden" name="SuccessURL" value="/path/filename.htm">
<input type="hidden" name="FailureURL" value="/path/filename.htm">
<input type="submit" value="Get Info">

This will locate the customer record and send them their login and password. It will send the customer to either the Success or Failure URL, which are 2 HTML pages you will need to create, one for success, and one for not found.