Skip to content

Instantly share code, notes, and snippets.

@muhammadzaky15
Created July 7, 2022 12:42
Show Gist options
  • Save muhammadzaky15/5e732d495de1ac3143165f1cf4c0caaf to your computer and use it in GitHub Desktop.
Save muhammadzaky15/5e732d495de1ac3143165f1cf4c0caaf to your computer and use it in GitHub Desktop.
<div className="w-1/4 mx-auto my-16">
<div className="w-full mb-4">
<label for="name" className="block">Email</label>
<input type="text" name="email" id="name" className="w-3/4 rounded-lg h-8 border-gray border-2 border-gray-200" onChange={(e) => updateUser(e)} />
</div>
<div className="w-full mb-4">
<label for="name" className="block">Password</label>
<input type="password" name="password" id="name" className="w-3/4 rounded-lg h-8 border-gray border-2 border-gray-200" onChange={(e) => updateUser(e)} />
</div>
<div className="w-1/3">
<button className="bg-green-400 p-2 rounded-xl">Login</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment