Force admin user to change password on first login :
New Implementation :
- This is for newly added as well as existing Admin User Only.
- With this new implementation , For First time login attemp user will redirected to change
password screen.
- Once password changes , user will redirect to home page.
- This will be only for first time, for second time on wards, admin will directly land on home page, as it does now
- User can manually change the password from "Change Password" screen.
Development Efforts :
User Interface Changes:
- Need to design and integrate "Change password" pop up screen, which will be shown at first time login.
- This screen will not close unless until user changed password successfully.
Business logic Changes:
- Need to integrate business logic to save changed password and redirect to home screen after first time login.
- Add or change business logic to redirect to home page if user already changed password successfully on basis of "LastChangePasswordDate" DB field.
Database Changes :
No change needed as we can use "LastChangePasswordDate" from Users table.If last
changes password date is null then will redirect to "change password" screen.
Add or change script to get field ("LastChangePasswordDate") deatil
Testing (Test scinario):
- Login with newly added admin user,should be redirected to "Change password" screen.
- Never show "Change password" screen afterwards password changed successfully.
- With existing admin user , should be redirected to "change password" screen if user never had changed password.
Force admin user to change password on first login :
New Implementation :
password screen.
Development Efforts :
User Interface Changes:
Business logic Changes:
Database Changes :
No change needed as we can use "LastChangePasswordDate" from Users table.If last
changes password date is null then will redirect to "change password" screen.
Add or change script to get field ("LastChangePasswordDate") deatil
Testing (Test scinario):