started input validation on forms

This commit was merged in pull request #40.
This commit is contained in:
victorAnumudu
2024-04-23 19:25:50 +01:00
parent fe759c6d0a
commit 0207bf631a
8 changed files with 819 additions and 444 deletions
+1 -1
View File
@@ -32,6 +32,7 @@ const BVN = ({handleNextStep}:Props) => {
const handleSubmit = (values:any) => {
console.log('values', values)
handleNextStep()
};
return (
@@ -70,7 +71,6 @@ const BVN = ({handleNextStep}:Props) => {
<button
type='submit'
className="w-full h-[3.625rem] rounded bg-[#FBB700] rounded-2 px-4 text-[18px] text-[#282828] font-semibold disabled:text-[#282828] disabled:text-opacity-50"
onClick={handleNextStep}
>
Enter
</button>