Add simple reset password page, using our own API#2
Merged
Conversation
|
Label error. Requires exactly 1 of: changelog:.*. Found: . A maintainer will add the required label. |
a28e8db to
90b39d0
Compare
df7e0ea to
1b031f2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces a new password reset flow for administrators, including a dedicated reset password page and updates to the login page. The changes streamline the password reset process and provide user feedback for success or error scenarios.
Password Reset Flow Enhancements:
web/src/routes/auth/login/+page.svelteto point to the new password reset page (/auth/reset-password) instead of an external URL.web/src/routes/auth/reset-password/+page.svelte, implementing the password reset functionality. The page includes a form for administrators to request a password reset email, with feedback for success, error, and rate-limiting scenarios.Localization Support:
web/src/routes/auth/reset-password/+page.tsto set the page title dynamically based on localization, using thegetFormatterutility.## Description