Modals 10
Modals 10
=
<div class="container mx-auto items-center text-center">
<div class="rounded-lg shadow-lg w-full max-w-2xl text-gray-600 relative">
<button class="w-5 h-5 absolute top-4 right-3">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
<div class="mx-auto grid grid-cols-2">
<div class="col-span-2 md:col-span-1">
<img src="http://demo-assets.uibak.com/themesdev/placeholder-horizontal.svg"alt="image placeholder" class="object-cover min-h-full max-h-64 w-full">
</div>
<div class="col-span-2 md:col-span-1 p-8 flex items-center justify-center">
<div>
<h2 class="text-2xl sm:text-3xl md:text-4xl text-gray-700 font-medium">Sign-in</h2>
<form action="post" class="max-w-md pt-4 lg:pt-6 space-y-4">
<input type="email" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Email">
<input type="password" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Password">
<button class="inline-block bg-gray-600 font-semibold rounded-lg py-3 px-5 lg:px-8 text-white mt-4">Sign-in now</button>
</form>
</div>
</div>
</div>
</div>
</div>