From 6f19fee35042929164d51023669c72bb269de249 Mon Sep 17 00:00:00 2001 From: Belen Curcio Date: Sat, 24 Oct 2020 17:10:54 -0300 Subject: [PATCH] Forgot Password --- components/ui/Modal/Modal.module.css | 4 ++++ pages/forgot-password.tsx | 32 ++++++++++++++++++++++------ 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/components/ui/Modal/Modal.module.css b/components/ui/Modal/Modal.module.css index 38f20261e..fa6b95e81 100644 --- a/components/ui/Modal/Modal.module.css +++ b/components/ui/Modal/Modal.module.css @@ -6,3 +6,7 @@ .modal { @apply bg-primary p-12 border border-accents-2; } + +.modal:focus { + @apply outline-none; +} diff --git a/pages/forgot-password.tsx b/pages/forgot-password.tsx index 23e18d2ba..d5139b273 100644 --- a/pages/forgot-password.tsx +++ b/pages/forgot-password.tsx @@ -1,12 +1,32 @@ import { Layout } from '@components/core' -import { Container } from '@components/ui' - +import { Logo, Modal, Button } from '@components/ui' export default function ForgotPassword() { return ( - -

Forgot Password

-

-
+
+ {}}> +
+
+ +
+
+
+ +
+ + + Don't have an account? + {` `} + + Sign Up + + +
+
+
+
) }