added change password template
1 files changed, 16 insertions(+), 0 deletions(-)

A => auth/templates/auth/changepassword.phtml
A => auth/templates/auth/changepassword.phtml +16 -0
@@ 0,0 1,16 @@ 
+<title>Password Reset</title>
+   <h3>Password Reset</h3>
+<p/>
+Enter your username in the form below along with your current and new passwords.
+   <p/>
+<%flash%>
+<p/>
+<form action="" method="post">
+Username: <input type="string" name="username" value="<%$username%>"/><br/>
+Current password: <input type="password" name="password" value="<%$password%>"/><br/>
+<p/>
+New Password: <input type="password" name="new_password" value="<%$new_password%>"/><br/>
+New Password (confirm): <input type="password" name="new_password2" value="<%$new_password2%>"/><br/>
+<input type="submit" name="action" value="Change Password"/>
+</form>
+