import React from 'react'
const Signup=()=>{
return (
<>
<div className='flex justify-center items-center min-h-screen bg-gray-100'>
<div className='border shadow p-6 w-80 bg-white'>
<h2 className='text-2xl font-bold mb-4 text text-cyan-500'>Sign up</h2>
<form>
<div>
<label htmlFor="name"> Name</label>
<input type='text text-gray-700' placeholder='enter Name' required></input>
</div>
<div>
<label htmlFor="email"> Email</label>
<input type='email' placeholder="Enter Email" required></input>
</div>
<div>
<label htmlFor='password'></label>
<input type='password' placeholder='******'></input>
</div>
<div className='mb-4'>
<button type='submit' className='w-full bg-green-600 text-white py-2'>
signup
</button>
<p>Already Have Account ? <a>Login</a></p>
</div>
</form>
</div>
</div>
</>
export default Signup;