-
Notifications
You must be signed in to change notification settings - Fork 23
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 #10 from 12Kishan/main
LoginAdded
- Loading branch information
Showing
3 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -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> |
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 |
---|---|---|
@@ -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; | ||
} |