Guest User

Untitled

a guest
Dec 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfif thisTag.executionMode eq "end">
  2.    
  3.     <cfparam name="attributes.captchaWidth" default="375" />
  4.     <cfparam name="attributes.captchaHeight" default="74" />
  5.     <cfparam name="attributes.captchaFontSize" default="25" />
  6.     <cfparam name="attributes.captchaDifficulty" default="medium" />
  7.    
  8.     <cfset captcha = $.captcha.generate() />
  9.    
  10.     <cfoutput>
  11.     <cfsavecontent variable="thisTag.generatedContent">
  12.         <c:field attributeCollection="#attributes#">
  13.            
  14.             <cfimage action="captcha"
  15.                 text=captcha.captchaText
  16.                 width=attributes.captchaWidth
  17.                 height=attributes.captchaHeight
  18.                 fontSize=attributes.captchaFontSize
  19.                 difficulty=attributes.captchaDifficulty />
  20.            
  21.             <c:input wrapper="false" attributeCollection="#attributes#" />
  22.                 <c:hidden name="#attributes.name#Hash" value="#captcha.captchaHash#" />
  23.  
  24.         </c:field>
  25.     </cfsavecontent>
  26.     </cfoutput>
  27.  
  28. </cfif>
Add Comment
Please, Sign In to add comment