Skip to content

Commit

Permalink
Merge pull request #287 from Ashish01122020/main
Browse files Browse the repository at this point in the history
Login Page Issue #2 resolved
  • Loading branch information
IshitaSatpathy authored Oct 25, 2022
2 parents ceb2e35 + d4728f4 commit 1b4bd52
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
89 changes: 89 additions & 0 deletions Ashish01/Login Page/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!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">
<title>Login Form</title>
</head>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
display: grid;
align-items: center;
justify-content: center;
}
.float{
margin: 10px auto;
border-radius: 50%;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
}
.box{
max-height: 600px;
max-width: 350px;
display: flex;
padding: 15px 20px;
border-radius: 10px;
border: 5px solid #0E1C38;
flex-direction: column;
background-color: chartreuse;
}
.input_section{
display: flex;
flex-direction: column;
justify-content: center;
}
input{
margin: 5px 0;
padding: 5px;
border-radius: 5px;
border: none;
}
.OR{
text-align: center;
padding: 5px;
}
img{
max-height: 100px;
max-width: 100px;
}
.login{
transition: background-color .5s ease;
cursor: pointer;
}
.login:hover{
background-color: #0E1C38;
color: #ffffff;
}
@media screen and (max-width: 260px){
body, input{
font-size: x-small;
}
}
</style>
<body>
<div class="box">
<div class="float">
<img src="pngfind.com-verified-png-5551803.png" alt="USER">
</div>
<div class="input_section">
<label for="username">Username</label>
<input type="username" id="username" name="username" placeholder="Username">
<p class="OR">OR<br></p>
<label for="email">Email Id</label>
<input type="email" id="email" name="email" placeholder="Your Email ID">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Password">
<input type="submit" value="Login" class="login"
</div>
</div>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1b4bd52

Please sign in to comment.