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 + +
+ + + )} +
+
+ + ) +}