Add password management images in public folder #56
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
-implemented full password management for OnTrack accounts, including registration, password reset, and password updates.. Enhances security authentication and usability by providing a complete password lifecycle.
Backend
Database migration for reset_password_token and reset_password_sent_at (so you’ll need ActiveRecord migration run on the DB).
Email delivery service configured (for sending reset password links).
Frontend (Angular)
New Angular components (ForgotPassword, ResetPassword) must be declared in doubtfire-angular.module.ts.
Updated routing (doubtfire.states.ts) to include the new states.
Fixes # (issue)
-New feature
Type of change
How Has This Been Tested?
The following screenshots demonstrate the password management workflow tested on the application (running on port 4200):
https://github.com/MillicentAmolo/doubtfire-astro/blob/main/public/Initial-home-page.PNG
The original home page before the “Forgot Password” feature was added.
https://github.com/MillicentAmolo/doubtfire-astro/blob/main/public/Updated-home-page-with-forgot-password-link.PNG
The home page after implementing the feature, now showing the link.
https://github.com/MillicentAmolo/doubtfire-astro/blob/main/public/Clicking-the-Reset-Link.PNG
After clicking “Forgot Password”, the system prompts for the user’s email.
Action: Enter email address and click “Send Reset Link.”
https://github.com/MillicentAmolo/doubtfire-astro/blob/main/public/Reset-email-link-received.PNG
The inbox showing the received email containing the password reset link.
https://github.com/MillicentAmolo/doubtfire-astro/blob/main/public/change-password-screen.PNG
After clicking the reset link, the browser opens the reset password page where the user enters and confirms a new password. Once the form is submitted, the password is updated.
Testing Checklist
Checklist