Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Login Page Component/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Component_Login_page

### [Aditya Ghyar](https://www.linkedin.com/in/aditya-ghyar/)
[GitHub](https://github.com/mgaditya-er)
<!-- next name below this line -->
66 changes: 66 additions & 0 deletions Login Page Component/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="loginPage.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

<link rel="stylesheet" href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css">



<title>Login</title>
</head>
<body>
<div class="h-screen bg-gray-500 px-3 py-5">

<div class="max-w-md mx-auto bg-white p-3 rounded">


<div class="px-3 py-1">
<div class="text-center">
<h1 class="text-2xl mb-4">Sign In</h1>
</div>



<div class="relative mb-3">
<span class="ml-2 bg-white px-2 absolute -top-3 text-sm">Email</span>
<input class="transition duration-500 border h-12 rounded w-full px-2 mb-2">
</div>

<div class="relative mb-1">
<span class="ml-2 bg-white px-2 absolute -top-3 text-sm">Password</span>
<input class="transition duration-500 border h-12 rounded w-full px-2 mb-2">
</div>

<div class="text-right mb-3">
<a href="#" class="cursor-pointer text-blue-500 hover:text-blue-700">Forgot password?</a>
</div>

<button class="h-12 w-full hover:bg-blue-800 focus:outline-none bg-gray-500 rounded text-white mb-3">Sign In</button>
<div class="mt-3">
<hr class="h-3.5 ">
<div class="relative flex justify-center">
<span class="absolute px-4 rounded -top-4 left-30 bg-white">OR </span>
</div>
</div>
<button class="h-12 w-full hover:bg-blue-800 focus:outline-none bg-red-700 rounded text-white mb-3">Sign In using Google</button>

</div>



</div>

</div>

</body>
</html>