Skip to content

Commit

Permalink
Merge pull request #296 from prachisuman25/main
Browse files Browse the repository at this point in the history
login form
  • Loading branch information
IshitaSatpathy authored Oct 28, 2022
2 parents 2f74e46 + 86cee8c commit 9e54641
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
54 changes: 54 additions & 0 deletions PrachiSuman2/login.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
body
{
margin: 0;
padding: 0;
background-color:#f9fbfc;
font-family: 'Arial';
}
.login{
width: 382px;
overflow: hidden;
margin: auto;
margin: 20 0 0 450px;
padding: 80px;
background: #aca6a6;


}
h2{
text-align: center;
color: #333738;
padding: 20px;
}
label{
color: #020106;
font-size: 17px;
}
#Email{
width: 300px;
height: 30px;
border: none;
padding-left: 8px;
}
#Pass{
width: 300px;
height: 30px;
border: none;
padding-left: 8px;

}
#log{
width: 300px;
height: 30px;
border: none;
padding-left: 7px;
border-radius: 24px;
color: rgb(53, 33, 33);


}
a{
float: right;
background-color: grey;
}

27 changes: 27 additions & 0 deletions PrachiSuman2/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
<link rel="stylesheet" type="text/css" href="login.css">
</head>
<body>
<h2>Login Page</h2><br>
<div class="login">
<form id="login" method="get" action="login.php">
<label><b>Email Address:
</b>
</label>
<input type="text" name="Email" id="Email" placeholder="@gmail.com">
<br><br>
<label><b>Password:
</b>
</label>
<input type="Password" name="Pass" id="Pass" placeholder="Password">
<br><br>
<input type="button" name="log" id="log" value="Log In">
<br><br>
<div><a href="#">Forgot Password</a></div>
</form>
</div>
</body>
</html>

0 comments on commit 9e54641

Please sign in to comment.