From 249de7b5958cf7d04ba12a114318edbc1c614c6a Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Tue, 15 Jul 2025 10:37:30 +0700 Subject: [PATCH] feat: rollback forgot password --- app/[locale]/auth/forgot-password/layout.tsx | 11 +++++ app/[locale]/auth/forgot-password/page.tsx | 48 ++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 app/[locale]/auth/forgot-password/layout.tsx create mode 100644 app/[locale]/auth/forgot-password/page.tsx diff --git a/app/[locale]/auth/forgot-password/layout.tsx b/app/[locale]/auth/forgot-password/layout.tsx new file mode 100644 index 00000000..2d394e06 --- /dev/null +++ b/app/[locale]/auth/forgot-password/layout.tsx @@ -0,0 +1,11 @@ +import { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Media Hub | POLRI", + description: "Media Hub merupakan situs resmi milik Divisi Humas Polri di mana di dalamnya berisi konten-konten yang dapat diakses secara gratis oleh Internal Polri, Jurnalis, Masyarakat Umum, dan KSP.", +}; +const Layout = ({ children }: { children: React.ReactNode }) => { + return <>{children}; +}; + +export default Layout; \ No newline at end of file diff --git a/app/[locale]/auth/forgot-password/page.tsx b/app/[locale]/auth/forgot-password/page.tsx new file mode 100644 index 00000000..06636a14 --- /dev/null +++ b/app/[locale]/auth/forgot-password/page.tsx @@ -0,0 +1,48 @@ +import { Link } from "@/i18n/routing"; +import ForgotPass from "@/components/partials/auth/forgot-pass"; +import Image from "next/image"; + +const ForgotPassPage = () => { + return ( +
+
+
+
+ + + +
+
+ +
+
+
+
+
+
+ {/* + + */} +
+
+

Forgot Your Password?

+
+
Enter your Username and instructions will be sent to you!
+ + +
+ Forget It, + + Send me Back + + to The Sign In +
+
+
+
+
+
+ ); +}; + +export default ForgotPassPage;