diff --git a/apps/web/src/app/(unauthenticated)/reset-password/page.tsx b/apps/web/src/app/(unauthenticated)/reset-password/page.tsx index 49071b581..982fe54c4 100644 --- a/apps/web/src/app/(unauthenticated)/reset-password/page.tsx +++ b/apps/web/src/app/(unauthenticated)/reset-password/page.tsx @@ -1,5 +1,34 @@ -import React from 'react'; +import Image from 'next/image'; +import Link from 'next/link'; -export default function ResetPassword() { - return
ResetPassword
; +import backgroundPattern from '~/assets/background-pattern.png'; + +export default function ResetPasswordPage() { + return ( +
+
+
+ background pattern +
+ +
+

Reset Password

+ +

+ The token you provided is invalid. Please try again. +

+ +

+ + Sign in + +

+
+
+
+ ); }