🚩 (login) create login page

This commit is contained in:
2025-07-14 14:52:50 +07:00
parent 9eb7165023
commit 2770f10747
7 changed files with 108 additions and 38 deletions

View File

@ -0,0 +1,25 @@
import { Button, Form, Input } from "@heroui/react";
import React from "react";
const EmailForm = () => {
return (
// Form component to handle email input
<Form className="mt-12 sm:mt-8">
<Input
className="w-full sm:w-[420px] "
label="Email"
type="email"
variant="bordered"
classNames={{
input: "text-md font-light pt-4",
inputWrapper: "flex gap-10",
}}
/>
<Button className="mt-2 w-full" color="primary">
Continue
</Button>
</Form>
);
};
export default EmailForm;