🚩 (login) create login page
This commit is contained in:
25
widgets/login/loginCard/EmailForm.tsx
Normal file
25
widgets/login/loginCard/EmailForm.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user