login page added

This commit was merged in pull request #1.
This commit is contained in:
victorAnumudu
2025-02-03 08:13:20 +01:00
parent 1f6d18430a
commit b8097fea92
20 changed files with 277 additions and 25 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from 'react'
export default function Label({name, htmlfor}) {
return (
<label className='text-black' htmlFor={htmlfor}>{name}</label>
)
}