diff --git a/apps/dimentorin/src/app/auth/forgot/otp/page.tsx b/apps/dimentorin/src/app/auth/forgot/otp/page.tsx index a2bd5a8..99d2daf 100644 --- a/apps/dimentorin/src/app/auth/forgot/otp/page.tsx +++ b/apps/dimentorin/src/app/auth/forgot/otp/page.tsx @@ -1,7 +1,7 @@ import { FC, ReactElement } from 'react'; import { RegisterResetBanner } from "@imphnen-frontend-service/ui/organisms"; import { ForgotStep, OtpForm } from "@imphnen-frontend-service/ui/molecules"; -import { Button, Input } from '@imphnen-frontend-service/ui/atoms'; +import { Button } from '@imphnen-frontend-service/ui/atoms'; export const Components: FC = (): ReactElement => { return ( diff --git a/apps/dimentorin/src/app/auth/login/page.tsx b/apps/dimentorin/src/app/auth/login/page.tsx index cfe8072..fe113e4 100644 --- a/apps/dimentorin/src/app/auth/login/page.tsx +++ b/apps/dimentorin/src/app/auth/login/page.tsx @@ -1,7 +1,8 @@ import { FC, ReactElement } from 'react'; import { LoginBanner } from "@imphnen-frontend-service/ui/organisms" -import { Button, Input, PasswordInput } from '@imphnen-frontend-service/ui/atoms'; +import { Button } from '@imphnen-frontend-service/ui/atoms'; import { useSearchParams } from 'react-router-dom'; +import { InputForm } from '@imphnen-frontend-service/ui/molecules'; export const Components: FC = (): ReactElement => { const [searchParams] = useSearchParams(); @@ -15,10 +16,8 @@ export const Components: FC = (): ReactElement => {

Hallo Minna-san

Welcome to Dimentorin by IMPHNEN
-
Email
- -
Password
- + +
Lupa Password ?
diff --git a/libs/ui/src/molecules/otp-form/otp-form.tsx b/libs/ui/src/molecules/otp-form/otp-form.tsx index 636262f..6c62c7b 100644 --- a/libs/ui/src/molecules/otp-form/otp-form.tsx +++ b/libs/ui/src/molecules/otp-form/otp-form.tsx @@ -53,6 +53,7 @@ export const OtpForm: FC = ({ onKeyDown={(e) => handleKeyDown(i, e)} size="lg" value={cell[i]} + className="sm:min-w-[10px]" /> ))}