Forms 03
Forms 03
=
<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">
<img class="h-8 p-1 self-end justify-self-center mx-auto mb-5" src="http://demo-assets.uibak.com/themesdev/airstream-logo.svg"alt="logo placeholder">
<h2 class="text-2xl md:text-3xl text-gray-700 font-medium text-center">Create new Account</h2>
<form action="post" class="max-w-md pt-4 lg:pt-6 space-y-4">
<input type="text" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Name">
<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">
<input type="password" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Repeat Password">
<label class="cursor-pointer block">
<input type="checkbox">
<span class="font-semibold">Terms and Conditions</span>
</label>
<button class="block w-full bg-gray-600 font-semibold rounded-lg py-4 px-5 lg:px-8 text-white mt-4">Create your account</button>
</form>
</div>
</div>
</div>