Forms 09
Forms 09
=
<div class="bg-gray-50 text-gray-600">
<div class="py-6 lg:py-12 xl:py-32 p-8 lg:px-16 flex flex-col items-center justify-center mx-auto">
<div class="bg-white p-6 lg:px-8 lg:pt-8 lg:pb-12 rounded-lg border border-gray-200 max-w-md w-full">
<h2 class="text-2xl text-gray-700 font-medium text-center">Sign-in to your Account</h2>
<a href="#" class="flex space-x-2 items-center justify-center w-full bg-gray-200 hover:bg-gray-300 font-semibold rounded-lg py-3 px-5 lg:px-8 mt-4 text-gray-500">
<svg class="h-6 w-6" aria-hidden="true" fill="currentColor" viewBox="0 0 24 24">
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
</svg>
<span>
Login with Twitter
</span>
</a>
<div class="relative mt-6">
<div class="absolute inset-0 flex items-center">
<div class="w-full border-t-2 border-gray-300"></div>
</div>
<div class="relative flex justify-center text-sm">
<span class="px-2 bg-white text-gray-600 font-mediums">Or continue with</span>
</div>
</div>
<form action="post" class="pt-4 space-y-4">
<label for="email" class="block">
<span class="block font-semibold mb-2">Email</span>
<input type="email" id="email" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Email">
</label>
<label for="password" class="block">
<span class="block font-semibold mb-2">Password</span>
<input type="password" name="password" id="password" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3"
placeholder="Password">
</label>
<button
class="block w-full bg-gray-600 hover:bg-gray-500 font-semibold rounded-lg py-4 px-5 lg:px-8 text-white mt-4">Sign-in</button>
</form>
<div class="text-center pt-4">
<a href="#">Already account?</a>
</div>
</div>
</div>
</div>