diff options
author | ivan <ivan> | 2002-02-05 16:48:27 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-02-05 16:48:27 +0000 |
commit | 2093701338cf6d4531a33466cd64ad48bbf88856 (patch) | |
tree | 12a94c70003e645a84d366c17662746c26332c4e /fs_passwd/fs_passwd.html | |
parent | d7a54962112545979a1710f97dd5299fbd9c1aaf (diff) |
web-based password changer!
Diffstat (limited to 'fs_passwd/fs_passwd.html')
-rw-r--r-- | fs_passwd/fs_passwd.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/fs_passwd/fs_passwd.html b/fs_passwd/fs_passwd.html new file mode 100644 index 000000000..fadc4df8b --- /dev/null +++ b/fs_passwd/fs_passwd.html @@ -0,0 +1,25 @@ +<html> + <head> + <title>Change password</title> + </head> + <body bgcolor="#e8e8e8"> + <h3>Change password</h3> + <form action="/cgi-bin/fs_passwd.cgi" method="post"> + <table bgcolor="#cccccc" border=0 cellspacing=2> + <tr><th align="right">Username</th> + <td><input type="text" name="username" size="18"></td> + </tr> + <tr><th align="right">Current password</th> + <td><input type="password" name="old_password" size="18"></td> + </tr> + <tr><th align="right">New password</th> + <td><input type="password" name="new_password" size="18"></td> + </tr> + <tr><th align="right">Re-enter new password</th> + <td><input type="password" name="new_password2" size="18"></td> + </tr> + </table> + <br><input type="submit" value="Change password"> + </body> +</html> + |