Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<!--- THIS GOES ON THE PAGE THAT PROCESSESS THE FORM --->
<!--- VALIDATES EMAIL ADDRESS TO MAKE SURE ITS SYNTAX IS VALID --->
<cfscript>
function isEmail(str) {
return REFindNoCase("^['_a-z0-9-]+(\.['_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*\.(([a-z]{2,3})|(aero|coop|info|museum|name|jobs|travel))$", str) IS 1;
}
</cfscript>
<cfif #YesNoFormat(isEmail('#FORM.Email#'))# is 0>
<!--- EMAIL VALIDATE FAILED --->
<cflocation url="linktopagetoshowerror.cfm?status=1" addtoken="no">
</cfif>