root/coldbox/trunk/samples/applications/ColdBoxReader/views/vwSignUp.cfm @ 186

Revision 186, 1.2 kB (checked in by luis, 7 years ago)

Finalized App, just needs the logos. but Finished

Line 
1<cfparam name="username" default="">
2<cfparam name="password" default="">
3<cfparam name="password2" default="">
4<cfparam name="email" default="">
5
6<cfoutput>
7<h1>Create your very own ColdBox Reader Account</h1>
8
9<form name="frm" method="post" action="javascript:doFormEvent('#getValue("xehCreate")#','centercontent',document.frm)">
10        <p>
11                Creating an account allows you to add new feeds and tag existing feeds. All passwords are encrypted.
12        </p>
13        <table>
14                <tr>
15                        <td><b>Username:</b></td>
16                        <td><input type="text" name="username" value="#username#" size="30" /></td>
17                </tr>
18                <tr>
19                        <td><b>Password:</b></td>
20                        <td><input type="password" name="password" value="#password#" size="30"/></td>
21                </tr>
22                <tr>
23                        <td><b>Retype Password:</b></td>
24                        <td><input type="password" name="password2" value="#password2#" size="30"/></td>
25                </tr>
26                <tr>
27                        <td><b>Email:</b></td>
28                        <td><input type="text" name="email" value="#email#" size="30"/></td>
29                </tr>
30                <tr><td colspan="2">&nbsp;</td></tr>
31                <tr>
32                        <td>&nbsp;</td>
33                        <td>
34                                <input type="button" value="Go Back" onClick="document.location='index.cfm'" />
35                                <input type="submit" value="Create Account" />
36                        </td>
37                </tr>
38        </table>
39</form>
40</cfoutput>
Note: See TracBrowser for help on using the browser.