Now let’s take a look at our textarea to see how it looks after it has been expanded it to display the text inside.

It’s looking good so let’s add a tag for a submit button to our library, and the code to invoke that tag from our main page.
<cfimport prefix="cimblog" taglib="./cf_tags"> <cfset name = "CIMBlogUIInputSubmit" /> <cfoutput> <cfif thisTag.executionMode eq "start"> <div> <label for="#attributes.ELEMENT_NAME#" title="#attributes.ELEMENT_NAME#"> </label> <input type="submit" id="#attributes.ELEMENT_NAME#" name="#attributes.ELEMENT_NAME#" value="#attributes.ELEMENT_VALUE#" /> </div> </cfif> </cfoutput>
<cimblog:CIMBlogUIInputSubmit STATE="ACTIVE" ELEMENT_NAME="SUBMIT_PRODUCTION_FORM" ELEMENT_VALUE="SUBMIT">
And a quick look to see what it look like unstyled.
