feat: add forgot passoword page

This commit is contained in:
Ephraim Atta-Duncan
2023-09-18 10:18:33 +00:00
committed by Mythie
parent c4282ded57
commit 8ba9a761d4
4 changed files with 182 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
import { useEffect } from 'react';
import Link from 'next/link';
import { useSearchParams } from 'next/navigation';
import { zodResolver } from '@hookform/resolvers/zod';
@@ -123,8 +124,11 @@ export const SignInForm = ({ className }: SignInFormProps) => {
</div>
<div>
<Label htmlFor="password" className="text-slate-500">
Password
<Label htmlFor="password" className="flex justify-between text-slate-500">
<span>Password</span>
<Link className="text-xs text-slate-500" href="/forgot-password">
Forgot?
</Link>
</Label>
<Input