Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LoginAdded #10

Merged
merged 1 commit into from
Oct 14, 2023
Merged
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
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;
}