diff --git a/Client/reasn-client/apps/web/app/login/page.tsx b/Client/reasn-client/apps/web/app/login/page.tsx index 6c57b9fc..c4150fd4 100644 --- a/Client/reasn-client/apps/web/app/login/page.tsx +++ b/Client/reasn-client/apps/web/app/login/page.tsx @@ -1,7 +1,43 @@ -import React from "react"; +"use client"; + +import { + ButtonBase, + FloatingInput, +} from "@reasn/ui/src/components/shared/form"; +import Link from "next/link"; +import React, { useRef } from "react"; const LoginPage = () => { - return
page
; + const formRef = useRef(null); + + const handleFormSubmit = () => { + console.log("form submitted"); + formRef.current?.submit(); + }; + + return ( + <> +
+
+ + +
+

nie masz konta?

+ + zarejestruj się + +
+ +
+
+

+ miło, że do nas wracasz +

+ +
+
+ + ); }; export default LoginPage;