Good example. Thanks! --nimer -----Original Message----- From: dave [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 12:05 PM To: CF-Talk Subject: RE: New CFFORM website
heres one maybe u can use mike, pretty simple but it has a few things that ppl seam to be having troubles with like adding text and using cfm logic. You can't see it in this example but it shows an error message if the login is incorrect. Also shows setting the form in a panel and use of colors to flava the form a bit. heres the live example http://jamwerx.com/test/loginform.cfm code: <!--- login form ---> ��� ��� <cfform action="" method="post" name="login_frm" preloader="yes" format="flash" height="300" width="400" preservedata="yes" skin="haloBlue"> ��� ��� ��� <cfformgroup type="panel" label="Member Login" style="margin-top:20; margin-bottom:20; font-size:14; font-style:normal; headerHeight:35; cornerRadius:12; headerColors:##B1D1E6, ##ffffff; background-color:##BDE5B0"> ��� ��� ��� <cfformitem type="HTML" style="margin-top:30; margin-bottom:30"> ��� ��� ��� ��� <textformat indent="30"><font size="12">Members please sign in, non-members please Register</font></textformat> ��� ��� ��� ��� <cfformitem type="hrule" style="color:##666666; shadowColor:##cccccc; strokeWidth:2" /> ��� ��� ��� </cfformitem> ��� ��� ��� ��� ��� ��� <!--- bad login script ---> ��� ��� ��� <cfif isdefined("badlogin")> ��� ��� ��� <cfformitem type="HTML" style="margin-top:30; margin-bottom:30"> ��� ��� ��� ��� <textformat indent="30"><font size="14" color="#990000"><b>Error! you were not found, please try again.</b></font></textformat> ��� ��� ��� ��� <cfformitem type="hrule" style="color:##666666; shadowColor:##cccccc; strokeWidth:2" /> ��� ��� ��� </cfformitem> ��� ��� ��� </cfif> ��� ��� ��� ��� ��� ��� <cfformgroup type="vbox" style="font-size:12; font-style:normal; verticalGap:15; margin-left:5"> ��� ��� ��� <cfinput type="text" label="Username: " name="username" width="150" maxlength="30" value="" required="yes" message="Username Required" tooltip="UserName" style="color:##666666; font-size:10px; font-weight:bold" validateat="onsubmit"> ��� ��� ��� <cfinput type="password" label="Password: " name="password" width="150" maxlength="30" value="" required="yes" message="Password Required" tooltip="Password" style="color:##666666; font-size:10px; font-weight:bold" validateat="onsubmit" > ��� ��� ��� <cfinput type="hidden" name="cfb" value="cfb"> ��� ��� ��� </cfformgroup> ��� ��� ��� ��� ��� ��� <cfformgroup type="horizontal" style="font-size:12; font-style:normal; verticalGap:20; margin-left:100; margin-top:20"> ��� ��� ��� <cfinput type="submit" value=" Login Now " name="Send"> ��� ��� ��� </cfformgroup> ��� ��� ��� </cfformgroup> ��� ��� </cfform> ---------------------------------------- From: "Mike Nimer" <[EMAIL PROTECTED]> Sent: Friday, April 01, 2005 12:57 AM To: CF-Talk <[email protected]> Subject: RE: New CFFORM website Sweet, The easiest would be to email me directly. One of these days I might set up a contribution form, for now the old school manual way is working fine. Granted, that is until I go on vacation and my email builds up, but what do you do ;) ----nimer -----Original Message----- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 10:37 PM To: CF-Talk Subject: RE: New CFFORM website I actually just finally got a chance to check it out and I think you've done a great job. It looks fine and there are a lot of useful examples. I have some code that you might or might not be interested in using as one entry. It's a fairly simple view cart/ enter billing and shipping info checkout type of form, but I think it could save people a bunch of time. Would you prefer I email that directly to you, or are you planning on implementing some sort of contribution facility for registered members? I know a lot of you are playing around with the new cfforms right now and I hope a lot of people will work to contribute to the site. Thanks for your efforts, Ferg ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201159 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

