rejetto forum
Software => HFS ~ HTTP File Server => HTML & templates => Topic started by: C R 3 4 M on October 10, 2010, 09:58:26 PM
-
Im currently using the template Live 3.0.1 By Alvaro. (Can be found at http://www.rawr-designs.com/projects/live/index.html (http://www.rawr-designs.com/projects/live/index.html)) I noticed that there isn't an option for the user to change his/her own password.
-I also noticed some of the templates around on this forum don't have the option to change their own password. Is it possible to create a blank page for the user to change his/her password? Kinda like admin panel.
-With the template i'm using, I think it would be easiest to add the change password option where the lock is. When a user is signed into the server it only shows the current signed in user.
-
you can create a folder name 'password' at root and use a diff template with what is necessary from the panel admin, there are only two sections which are necessary.
-
Could you tell me how to do that and what codes I would need to copy? I tried figuring it out for about an hour with no success.
-Thanks for the quick reply
I changed the code in admin panel. But the thing is, I change it so that anyone can access that particular section of admin panel. Now theres a security conflict. Anyone could change anyones pass.
It's set to if %user%=%user%
[passchanger]
<html>
<head>
{.if|{.%user%=%user%.}|
<title>Pass Changer</title>
</head>
<body>
Welcome %user% ! </b>
<br>
<form method=post action="/~passchange">
To use this function simply type in the Username.
<p>Then type the new passwo..........
-
[passchanger]
<html>
<head>
{.if|%user%|
<title>Pass Changer</title>
</head>
<body>
Welcome %user% ! </b>
<br>
<form method=post action="/~passchange">
To use this function simply type in the Username.
<p>Then type the new passwo..........
-
Ahhhh, I seee. And I got it to work!
Thanks so much Mars
-
;)