diff --git a/frontend/app/signin/page.tsx b/frontend/app/signin/page.tsx index 718aa00..53ca80c 100644 --- a/frontend/app/signin/page.tsx +++ b/frontend/app/signin/page.tsx @@ -1,3 +1,5 @@ +import { Input } from "@/components/ui/input"; + export default function Signin() { return (
@@ -5,8 +7,23 @@ export default function Signin() {
{/* login box */} -
-

Login

+
+
+

Login

+
+ Don't have an account? + Sign up +
+
+ +
+

+ EMAIL * +

+
+ +
+
diff --git a/frontend/components/ui/input.tsx b/frontend/components/ui/input.tsx new file mode 100644 index 0000000..69b64fb --- /dev/null +++ b/frontend/components/ui/input.tsx @@ -0,0 +1,22 @@ +import * as React from "react" + +import { cn } from "@/lib/utils" + +const Input = React.forwardRef>( + ({ className, type, ...props }, ref) => { + return ( + + ) + } +) +Input.displayName = "Input" + +export { Input }