added some auth pages

This commit was merged in pull request #1.
This commit is contained in:
victorAnumudu
2024-12-05 01:19:09 +01:00
parent bf47d0e304
commit 0e29ece398
25 changed files with 482 additions and 11 deletions
+9
View File
@@ -0,0 +1,9 @@
import React from 'react'
export default function TextInput({type, placeholder}) {
return (
<div className='relative w-full h-10'>
<input type={type} className="w-full h-full p-2 rounded-sm border border-black-gray focus:outline-none focus:border-primary active:border-primary" placeholder={placeholder} />
</div>
)
}