Secure Form:

Description:
If you have a secure form on your site, there's still the possibility that your users can get to the form via a non-secure URL. With this utility and a couple lines of code, you can ensure that the user always hits your form(s) securely.

The Required Code:
<cfset secure_form = "complete secure url to your form">
<cfinclude template="/common/secure_form.cfm">

NOTE: The 'secure_form' must be the fully qualified SECURE form link to your form, otherwise your form will keep looping to itself causing an error.

Close