-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Customize Toast with Action Button for Resending Verification on Sign…
…-In Failure - Updated the `sign-in` failed toast notification with custom styling. - Added an action button inside the toast that allows users to navigate to the resend verification page if sign-in fails. - Ensured the action button is intuitive and improves user experience by providing an immediate option for verification issues. - Tested and verified that the navigation works correctly when triggered from the toast notification.
- Loading branch information
1 parent
679317b
commit ecc40a8
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { AuthTitle } from "@/components/auth-title"; | ||
|
||
const ResendVerifyPage = () => { | ||
return ( | ||
<section className="px-4 lg:px-0 h-full flex-center flex-col gap-y-6 w-fit mx-auto"> | ||
<AuthTitle title="Resend Code" /> | ||
</section> | ||
); | ||
}; | ||
|
||
export { ResendVerifyPage }; |
This file contains 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