diff --git a/wretched-machines-frontend/src/app/(auth)/login/page.tsx b/wretched-machines-frontend/src/app/(auth)/login/page.tsx index 7dc58bc..52f04fe 100644 --- a/wretched-machines-frontend/src/app/(auth)/login/page.tsx +++ b/wretched-machines-frontend/src/app/(auth)/login/page.tsx @@ -1,24 +1,9 @@ -"use client" +const Login = () => { + return ( + + ); +} -import { FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form"; -import { Input } from "@/components/ui/input"; -import { useForm } from "react-hook-form"; - -export default function Login() { -const form = useForm() - return( - ( - - Username - - - - This is your public display name. - - - )}/> - ); -} \ No newline at end of file +export default Login; \ No newline at end of file diff --git a/wretched-machines-frontend/src/app/(auth)/logout/page.tsx b/wretched-machines-frontend/src/app/(auth)/logout/page.tsx index e69de29..680920d 100644 --- a/wretched-machines-frontend/src/app/(auth)/logout/page.tsx +++ b/wretched-machines-frontend/src/app/(auth)/logout/page.tsx @@ -0,0 +1,9 @@ +const Logout = () => { + return ( + + ); +} + +export default Logout; \ No newline at end of file diff --git a/wretched-machines-frontend/src/app/(auth)/register/page.tsx b/wretched-machines-frontend/src/app/(auth)/register/page.tsx index e69de29..eaa845d 100644 --- a/wretched-machines-frontend/src/app/(auth)/register/page.tsx +++ b/wretched-machines-frontend/src/app/(auth)/register/page.tsx @@ -0,0 +1,9 @@ +const Register = () => { + return ( + + ); +} + +export default Register; \ No newline at end of file