root/trunk/website/forums/confirm.cfm @ 21

Revision 5, 1.1 kB (checked in by DanWilson, 17 years ago)

Initial Commit Of ModelGlue? Website (upgrade to blogcfc 511)

Line 
1<cfsetting enablecfoutputonly=true>
2<!---
3        Name         : index.cfm
4        Author       : Raymond Camden
5        Created      : July 5, 2006
6        Last Updated :
7        History      :
8        Purpose          : Confirms a user.
9--->
10
11<cfparam name="url.u" default="">
12
13<!--- run confirmation --->
14<cfset result = application.galleon.user.confirm(url.u)>
15
16<!--- Loads header --->
17<cfmodule template="tags/layout.cfm" templatename="main" title="#application.galleon.settings.title# Registration Confirmation">
18
19<cfoutput>
20<p>
21<table width="500" cellpadding="6" class="tableDisplay" cellspacing="1" border="0">
22        <tr class="tableHeader">
23                <td class="tableHeader">Registration Confirmation</td>
24        </tr>
25        <tr class="tableRowMain">
26                <td>
27                <cfif result>
28                        <p>
29                        Thank you for confirming your registration. You will now have to <a href="login.cfm">login</a>
30                        to finalize the process.
31                        </p>
32                <cfelse>
33                        <p>
34                        Sorry, but we were unable to confirm your registration code. Please ensure you copied the complete
35                        URL from your mail client.
36                        </p>
37                </cfif>
38                </td>
39        </tr>
40</table>
41</p>
42</cfoutput>
43
44</cfmodule>
45
46<cfsetting enablecfoutputonly=false>
Note: See TracBrowser for help on using the browser.