diff --git a/src/modules/auth/components/RegisterForm.jsx b/src/modules/auth/components/RegisterForm.jsx index 181a1b6..7261106 100644 --- a/src/modules/auth/components/RegisterForm.jsx +++ b/src/modules/auth/components/RegisterForm.jsx @@ -241,6 +241,7 @@ export function RegisterForm({ className, ...props }) { {errPersonal.given_name && ( @@ -255,6 +256,7 @@ export function RegisterForm({ className, ...props }) { {errPersonal.last_name && ( @@ -272,6 +274,7 @@ export function RegisterForm({ className, ...props }) { {errPersonal.middle_name && ( @@ -289,6 +292,7 @@ export function RegisterForm({ className, ...props }) { {errPersonal.extension_name && ( @@ -304,6 +308,7 @@ export function RegisterForm({ className, ...props }) { id="date_of_birth" type="date" max={new Date().toISOString().split('T')[0]} + className="text-sm" {...regPersonal('date_of_birth')} /> {errPersonal.date_of_birth && ( @@ -320,6 +325,7 @@ export function RegisterForm({ className, ...props }) { {errPersonal.occupation && ( @@ -336,6 +342,7 @@ export function RegisterForm({ className, ...props }) { id="phone" type="tel" placeholder="+63 912 345 6789" + className="text-sm" {...regPersonal('phone')} /> {errPersonal.phone && ( @@ -388,6 +395,7 @@ export function RegisterForm({ className, ...props }) { disabled={isRegistering} readOnly onFocus={(e) => e.target.removeAttribute('readonly')} + className="text-sm" {...regCreds('email')} /> {errCreds.email && ( @@ -407,7 +415,7 @@ export function RegisterForm({ className, ...props }) { placeholder="Min. 8 chars, 1 uppercase, 1 number" autoComplete="new-password" disabled={isRegistering} - className="pr-10" + className="pr-10 text-sm" {...regCreds('password')} />