Skip to content

Commit

Permalink
added forget password method
Browse files Browse the repository at this point in the history
  • Loading branch information
ad956 committed Jul 5, 2024
1 parent 74c9541 commit 4d6e841
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/(pages)/(auth)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ export default function Login() {
}
}

async function handleForgetPassword() {}

const showToast = (inputRef: React.RefObject<HTMLInputElement>) => {
if (inputRef.current?.name === "email") {
if (emailError) {
Expand Down Expand Up @@ -218,10 +220,10 @@ export default function Login() {
)}
</Select>
<Link
// size="sm"
href="#"
underline="hover"
className="self-right m-2 text-xs text-black/70"
onClick={handleForgetPassword}
>
Forget password?
</Link>
Expand Down

0 comments on commit 4d6e841

Please sign in to comment.