forked from davidgrzyb/tailwind-auth-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request davidgrzyb#2 from jeliasson/patch-1
Closing and alt tags
- Loading branch information
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|
@@ -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> |