Skip to content

Commit

Permalink
Merge pull request #10 from 12Kishan/main
Browse files Browse the repository at this point in the history
LoginAdded
  • Loading branch information
Nisarg155 committed Oct 14, 2023
2 parents 4fb115c + 1af6347 commit 7796ab6
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 0 deletions.
Binary file added Login page/image/view.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions Login page/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<html>

<head>
<title>Login page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
<link href="style2.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/js/materialize.min.js"></script>
</head>

<body>

<div class="wrapper">

<div class="login_div">
<form method="post">

<div class="input-field">
<i class="mdi-social-person-outline prefix"></i>
<input class="validate" class="email" type="email" placeholder="Enter Your Email">

</div>

<div class="input-field">
<i class="mdi-action-lock-outline prefix"></i>
<input class="password" type="password" placeholder="Password">

</div>

<div class="input-field">
<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1">Remember</label><br>

</div>

<div class="input-field">
<button><a href=index.html>Submit</a></button>
</div>

<p>
<a href="#" class="register">Register Now!</a>
<a href="#" class="forgot">Forgot password?</a>
</p>

<br>
<br>
</form>
</div>

</div>





</body>

</html>
51 changes: 51 additions & 0 deletions Login page/style2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
body {
text-align: center;
width: 100%;
margin-top: 170px;
padding: 0px;
background-color: orange;
}

.wrapper {
margin: 0 auto;
padding: 0px;
text-align: center;
width: 995px;
}

.login_div {
background-color: white;
padding: 20px;
max-width: 300px;
margin-left: 345px;
}

.login_div button {
text-decoration: none;
background-color: blue;
color: white;
font-family: cosmic, sans-serif;
text-align: center;
border: 2px solid white;
border-radius: 10px;
transition: 0.5s;
width: 100%;
}

.login_div button hover {
background-color: black;
color: orange;
border: none;
border-bottom: 4px solid orange;
transition: 0.5s;
}

.login_div .register {
margin-top: 20px;
float: left;
}

.login_div .forgot {
margin-top: 20px;
float: right;
}

0 comments on commit 7796ab6

Please sign in to comment.