How to make an user password expires after 90 days

musmoniem

Member
Local time
Today, 04:03
Joined
Apr 30, 2020
Messages
30
I had a access database i made table with usernames & passwords of users .. and i need to make these passwords expires after 90 days ... any help please
 

Attachments

Have a field with date password last changed. Have code when user logs in to calculate elapsed days.
 
After user provides valid credentials, do a lookup on the DateChange field and calculate if 90 days have passed. If so then require user to provide a new password. Open a form bound to Users and open to this user's record. They enter new password. Code sets value of DateChange field.

Me!DateChange = Date()

The code will likely get quite complex so when you have specific issue, post question.
 

Users who are viewing this thread

Back
Top Bottom