diff --git a/frontend/app/auth/check-email/page.tsx b/frontend/app/auth/check-email/page.tsx index 79ec0cf..3ecb3f9 100644 --- a/frontend/app/auth/check-email/page.tsx +++ b/frontend/app/auth/check-email/page.tsx @@ -1,6 +1,8 @@ "use client"; import ErrorBoundary from "@/components/error/ErrorBoundary"; +import Link from "next/link"; +import { ArrowLeft } from "lucide-react"; import { useToast } from "@/components/ui/ToastProvider"; import { useState } from "react"; import Button from "@/components/ui/Button"; @@ -48,19 +50,35 @@ const CheckEmail = () => { return ( -
+
+ {/* Back Arrow - desktop */} +
+ + + +
{/* Main Content */} -
+
-
+ {/* Mobile header with back arrow */} +
+
+ + + +

Check your Email

+ {/* Desktop title */} +

+ Check your Email +

{/* Message */} -
-

+

+

We've sent you a link to your email address to reset your password. Click the link in your inbox to continue.

diff --git a/frontend/app/auth/forgot-password/page.tsx b/frontend/app/auth/forgot-password/page.tsx index 8f47d99..c1a4305 100644 --- a/frontend/app/auth/forgot-password/page.tsx +++ b/frontend/app/auth/forgot-password/page.tsx @@ -3,6 +3,7 @@ import ErrorBoundary from "@/components/error/ErrorBoundary"; import Link from "next/link"; import Image from 'next/image'; +import { ArrowLeft } from "lucide-react"; import { useRouter } from "next/navigation"; import Input from "@/components/ui/Input"; import { useToast } from "@/components/ui/ToastProvider"; @@ -94,12 +95,7 @@ const ForgotPassword = () => { {/* Back Arrow - stays at top on desktop, within main content */}
- Home +
{/* Main Content */} @@ -131,7 +127,7 @@ const ForgotPassword = () => {