-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
51-create-forgot-password-flow #79
base: main
Are you sure you want to change the base?
Conversation
app/(auth)/forgot-password/page.tsx
Outdated
); | ||
}; | ||
|
||
const isValidEmail = (email: string): boolean => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isValidEmail can be outside component because not needed for component state / dont need to render each time
@@ -0,0 +1,35 @@ | |||
'use client'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yay!! everything honestly looks good! <3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good!
everything looks great, great job!! just a couple things:
|
What's new in this PR 🧑🌾
Description
Screenshots
How to review
Edited login page, created email-sent and forgot-password page, and lib/icons (for the back arrow icon). Confirm that you only receive an email from supabase if your account is registered.
Next steps
Might include message on email-sent page that states if the user didn't receive an email from supabse, then either the account isn't registered or the user input the email wrong.
Relevant links
Online sources
Related PRs
CC: @ccatherinetan