Skip to content

Commit

Permalink
Create login.html
Browse files Browse the repository at this point in the history
  • Loading branch information
purva-g authored Sep 8, 2023
1 parent 068ca5c commit a085155
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions html/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="author" content="Your Name" />

<title>Log In</title>



<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700|Raleway:400,700&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" />
<link href="css/responsive.css" rel="stylesheet" />

<style>
.spacer {
height: 100px;
}
</style>
</head>

<body class="sub_page">
<div class="hero_area">
<header class="header_section">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg custom_nav-container">
<a class="navbar-brand" href="index.html">
<img src="images/Logo.png" alt="Your Logo" />
</a>
<div class="navbar-collapse" id="">

</div>
</nav>
</div>
</header>
</div>

<section class="sign-in-form-section layout_padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
<div class="sign-in-form-box">
<h2>Log In</h2>
<form action="#" method="post">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" class="form-control" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" class="form-control" required>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Sign In</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>


<section class="spacer"></section>

<section class="container-fluid footer_section ">
<div class="container">
<p>
&copy; <span id="displayYear"></span> All Rights Reserved By
<a href="https://html.design/">Free Html Templates</a>
</p>
</div>
</section>

<script type="text/javascript" src="jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="bootstrap.js"></script>
<script type="text/javascript" src="custom.js"></script>
</body>

</html>

0 comments on commit a085155

Please sign in to comment.