Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/forgot-password/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export default function ForgotPasswordPage() {
return (
<div>
This page is under construction. Please check back later for the forgot
password functionality.
<p className="text-sm text-gray-500 mt-2">
If you have any questions, please contact support.
</p>
</div>
);
}
2 changes: 1 addition & 1 deletion components/auth/login/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function LoginForm() {

<div className="text-center mt-2">
<Link
href="/organization/forgot-password"
href="/forgot-password"
className="text-sm text-purple-600 hover:underline"
>
Forgot password?
Expand Down