Add job implemented

This commit was merged in pull request #57.
This commit is contained in:
victorAnumudu
2023-05-11 21:33:34 +01:00
parent 63861ea32c
commit 8132bb6f3f
9 changed files with 555 additions and 119 deletions
@@ -19,6 +19,8 @@ export default function InputCom({
onClick,
disable,
blurHandler,
spanTag,
inputBg
}) {
const inputRef = useRef(null);
// Entry Validation
@@ -138,8 +140,9 @@ export default function InputCom({
<label
className="input-label text-[#181c32] dark:text-white text-[13.975px] leading-[20.9625px] font-semibold block"
htmlFor={name}
>
>
{label}
{spanTag && <span className="text-green-700 text-sm tracking-wide">{spanTag}</span>}
</label>
)}
{forgotPassword && (
@@ -158,7 +161,7 @@ export default function InputCom({
placeholder={placeholder}
value={value}
onChange={inputHandler}
className={`input-field placeholder:text-base text-dark-gray dark:text-white w-full h-full bg-[#FAFAFA] dark:bg-[#11131F] focus:ring-0 focus:outline-none ${fieldClass}`}
className={`input-field placeholder:text-base text-dark-gray dark:text-white w-full h-full ${inputBg ? inputBg: 'bg-[#FAFAFA]'} dark:bg-[#11131F] focus:ring-0 focus:outline-none ${fieldClass}`}
type={type}
id={name}
name={name}