Skip to content

Commit

Permalink
Merge pull request davidgrzyb#2 from jeliasson/patch-1
Browse files Browse the repository at this point in the history
Closing and alt tags
  • Loading branch information
davidgrzyb authored May 2, 2021
2 parents 892d310 + c25acfd commit 44564b6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions register.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,33 @@
<div class="w-full md:w-1/2 flex flex-col">

<div class="flex justify-center md:justify-start pt-12 md:pl-12 md:-mb-12">
<a href="#" class="bg-black text-white font-bold text-xl p-4">Logo</a>
<a href="#" class="bg-black text-white font-bold text-xl p-4" alt="Logo">Logo</a>
</div>

<div class="flex flex-col justify-center md:justify-start my-auto pt-8 md:pt-0 px-8 md:px-24 lg:px-32">
<p class="text-center text-3xl">Join Us.</p>
<form class="flex flex-col pt-3 md:pt-8" onsubmit="event.preventDefault();">
<div class="flex flex-col pt-4">
<label for="name" class="text-lg">Name</label>
<input type="text" id="name" placeholder="John Smith" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline">
<input type="text" id="name" placeholder="John Smith" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline" />
</div>

<div class="flex flex-col pt-4">
<label for="email" class="text-lg">Email</label>
<input type="email" id="email" placeholder="[email protected]" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline">
<input type="email" id="email" placeholder="[email protected]" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline" />
</div>

<div class="flex flex-col pt-4">
<label for="password" class="text-lg">Password</label>
<input type="password" id="password" placeholder="Password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline">
<input type="password" id="password" placeholder="Password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline" />
</div>

<div class="flex flex-col pt-4">
<label for="confirm-password" class="text-lg">Confirm Password</label>
<input type="password" id="confirm-password" placeholder="Password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline">
<input type="password" id="confirm-password" placeholder="Password" class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 mt-1 leading-tight focus:outline-none focus:shadow-outline" />
</div>

<input type="submit" value="Register" class="bg-black text-white font-bold text-lg hover:bg-gray-700 p-2 mt-8">
<input type="submit" value="Register" class="bg-black text-white font-bold text-lg hover:bg-gray-700 p-2 mt-8" />
</form>
<div class="text-center pt-12 pb-12">
<p>Already have an account? <a href="login.html" class="underline font-semibold">Log in here.</a></p>
Expand All @@ -62,9 +62,9 @@

<!-- Image Section -->
<div class="w-1/2 shadow-2xl">
<img class="object-cover w-full h-screen hidden md:block" src="https://source.unsplash.com/IXUM4cJynP0">
<img class="object-cover w-full h-screen hidden md:block" src="https://source.unsplash.com/IXUM4cJynP0" alt="Background" />
</div>
</div>

</body>
</html>
</html>

0 comments on commit 44564b6

Please sign in to comment.