mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-17 23:12:23 +00:00
feat(auth): add sign-in and sign-up pages
This commit is contained in:
parent
095af823e4
commit
2d872da445
5
src/app/(auth)/sign-in/page.tsx
Normal file
5
src/app/(auth)/sign-in/page.tsx
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { SignInForm } from "@/components/sign-in-form";
|
||||||
|
|
||||||
|
export default function SignInPage() {
|
||||||
|
return <SignInForm />;
|
||||||
|
}
|
5
src/app/(auth)/sign-up/page.tsx
Normal file
5
src/app/(auth)/sign-up/page.tsx
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { SignUpForm } from "@/components/sign-up-form";
|
||||||
|
|
||||||
|
export default function SignUpPage() {
|
||||||
|
return <SignUpForm />;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user