-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
84 additions
and
0 deletions.
There are no files selected for viewing
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,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> | ||
© <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> |