From b93e3c0b52f82b69162b6796f9b1e97b0a389473 Mon Sep 17 00:00:00 2001 From: Ephraim Atta-Duncan Date: Mon, 18 Sep 2023 15:13:19 +0000 Subject: [PATCH] feat: add invalid reset token page --- .../(unauthenticated)/reset-password/page.tsx | 35 +++++++++++++++++-- 1 file changed, 32 insertions(+), 3 deletions(-) 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 + +

+
+
+
+ ); }