-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangepass.cfm
56 lines (42 loc) · 1.73 KB
/
changepass.cfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!---
Copyright (C) Volition, Inc. 2005. All rights reserved.
All source code herein is the property of Volition, Inc. You may not sell
or otherwise commercially exploit the source or things you created based on the
source.
--->
<cfinclude template="variables.cfm">
<cfinclude template="doctop.cfm">
<!--- Page info goes here --->
<cfif isdefined("message")>
<div class="copy">
<cfif message IS '1'>
<b>Your login and/or password are incorrect.</b>
<cfelseif message IS '2'>
<b>Your two 'new password' entries do not match.</b>
<cfelseif message IS '3'>
<b>Your password has been successfully changed.</b>
</cfif>
</div>
<cfelse>
<table><tr><td>
<div class="copy">
<cfform action="_changepass.cfm" method="POST" enablecab="Yes" name="login">
<b>Login:</b><br>
<cfinput type="text" name="login" message="You must enter your login." required="yes" size="20" maxlength="50"><p>
<b>Old Password:</b><br>
<cfinput type="password" name="oldpassword" message="You must enter your old password." required="yes" size="20" maxlength="50"><p>
<b>New Password:</b><br>
<cfinput type="password" name="newpassword" message="You must enter your new password." required="yes" size="20" maxlength="50"><p>
<b>Dup Password:</b><br>
<cfinput type="password" name="duppassword" message="You must confirm your new password." required="yes" size="20" maxlength="50"><p>
<br>
<input type="submit" value="Change My Password">
</cfform>
</div>
</td></tr></table>
</cfif>
<!--- End page info --->
<cfinclude template="docmid.cfm">
<cfinclude template="menus/menu_accounts.cfm">
<!--- end menus --->
<cfinclude template="docbot.cfm">