From 4667eeba1135d8306bb0c1e1047d9b5b20b74e96 Mon Sep 17 00:00:00 2001 From: TZGyn Date: Fri, 25 Aug 2023 00:12:32 +0800 Subject: [PATCH] Login and Signup page --- app/login/page.tsx | 12 +++- app/signup/page.tsx | 135 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+), 1 deletion(-) create mode 100644 app/signup/page.tsx diff --git a/app/login/page.tsx b/app/login/page.tsx index fa8a221..387a33e 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -9,6 +9,7 @@ import { } from '@nextui-org/modal' import { Button } from '@nextui-org/button' import { Input } from '@nextui-org/input' +import { Link } from '@nextui-org/link' import { useRouter } from 'next/navigation' import { useState } from 'react' @@ -56,7 +57,7 @@ export default function LoginPage() { + placement='center'> { if (e.key === 'Enter') onSubmit() @@ -98,6 +99,15 @@ export default function LoginPage() { invalid ? 'invalid' : 'valid' } /> +
+ + Don't have an account? Create here + +
+ + + )} +
+
+ + ) +}