create new login page

create all UI components on the login page, including the header, login form, and OAuth selection
This commit is contained in:
2025-08-19 19:58:29 +07:00
parent 5e4047a500
commit 6290f6bffa
3 changed files with 107 additions and 1 deletions

View File

@ -0,0 +1,26 @@
"use client";
import { Button, Input } from "@heroui/react";
import React from "react";
const EmailInput = () => {
return (
<>
<Input
className="w-full "
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>
</>
);
};
export default EmailInput;