Newbies gokiwu Posted November 24, 2004 Newbies Posted November 24, 2004 I have a created a web form which authenticates a user by their ID and password using the -Find action, but I would like to also give user's the ability to change their password ie enter your old password and then enter new password. Does anyone have any ideas? Thanks.
Newbies jadairva Posted December 27, 2004 Newbies Posted December 27, 2004 I'm using Filemaker authentication with FM7 client version. I used three text fields: password_old password_new passwork_result ...and a <change password> button running script: Set Error Capture [On] Change Password [Old password: Tablename password_old ; New password: Tablename : password_new ] If [Get (LastError) <> 0 ] Set Field [ tablename:: Password_old , "" ] Set Field [ tableneame:: Password_new , "" ] Set Field [ tablename:: Password_result , "incorrect password, please try again"] Else Set Field [ tablename:: Password_old , "" ] Set Field [ tableneame:: Password_new , "" ] Set Field [ tablename:: Password_result , "password changed"] End if Go to Layout [ "MainMenu" (tablename)] Hope that works for you. John Can someone tell me how to make these password fields return "*" characters instead of the actual letters?
Recommended Posts
This topic is 7272 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now