==================================================
                       SQL QuickRegister - May 8, 2008
                 ==================================================
   
   
   Application Security
   -----------------------------------------------
   Application security is implemented in a number of ways as listed below:
   
   1. The file secureForm.pm implements a number of validations on all input fields
      They are as follows: 
               1. validates miniumum length
               2. validates maximum length
               3. validates numeric type
               4. validates for 'Content-type' text to stop the script from sending spam
               5. validates fields not used for urls
               
      If one creates new form fields this file should be updated.
   
   2. All field names are validated to be [a-zA-Z0-9] and the underscore.
   
      Any new form fields created can only be from the alphanumeric character set and the underscore.
   
   3. E-mail Addresses validated for invalid characters.
   
   4. To prevent spam robots from submitting the registration form one can implement an
       image captcha.   Click here for more details