-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
b17fae3
commit 06ffc6b
Showing
2 changed files
with
68 additions
and
40 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
padding: 0;c | ||
box-sizing: border-box; | ||
font-family: sans-serif; | ||
} | ||
|
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 |
---|---|---|
@@ -1,42 +1,70 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Admin</title> | ||
</head> | ||
<link rel="stylesheet" href="login.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"> | ||
<script src="https://use.fontawesome.com/f59bcd8580.js"></script> | ||
<body> | ||
<div class="container"> | ||
<div class="row m-5 no-gutters shadow-lg"> | ||
<div class="col-md-6 d-none d-md-block"> | ||
<img src="/image/milk-with-cow.png" class="img-fluid" style="min-height:100%;" /> | ||
</div> | ||
<div class="col-md-6 bg-white p-5"> | ||
<h3 class="pb-3">Admin user</h3> | ||
<div class="form-style"> | ||
<form> | ||
<div class="form-group pb-3"> | ||
<input type="email" placeholder="Email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp"> | ||
</div> | ||
<div class="form-group pb-3"> | ||
<input type="password" placeholder="Password" class="form-control" id="exampleInputPassword1"> | ||
</div> | ||
<div class="d-flex align-items-center justify-content-between"> | ||
<div class="d-flex align-items-center"><input name="" type="checkbox" value="" /> <span class="pl-2 font-weight-bold">Remember Me</span></div> | ||
<div><a href="index.html">Forget Password?</a></div> | ||
</div> | ||
<div class="pb-2"> | ||
<a href="index.html" class="btn btn-dark w-100 font-weight-bold mt-2">Submit </a> | ||
</div> | ||
</form> | ||
<div class="pt-4 text-center"> <a href="index.html">Back to Home </a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</head> | ||
<link rel="stylesheet" href="login.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css" | ||
/> | ||
<script src="https://use.fontawesome.com/f59bcd8580.js"></script> | ||
<body> | ||
<div class="container"> | ||
kj | ||
|
||
<div class="row m-5 no-gutters shadow-lg"> | ||
<div class="col-md-6 d-none d-md-block"> | ||
<img | ||
src="/image/milk-with-cow.png" | ||
class="img-fluid" | ||
style="min-height: 100%" | ||
/> | ||
</div> | ||
<div class="col-md-6 bg-white p-5"> | ||
<h3 class="pb-3">Admin user</h3> | ||
<div class="form-style"> | ||
<form> | ||
<div class="form-group pb-3"> | ||
<input | ||
type="email" | ||
placeholder="Email" | ||
class="form-control" | ||
id="exampleInputEmail1" | ||
aria-describedby="emailHelp" | ||
/> | ||
</div> | ||
<div class="form-group pb-3"> | ||
<input | ||
type="password" | ||
placeholder="Password" | ||
class="form-control" | ||
id="exampleInputPassword1" | ||
/> | ||
</div> | ||
<div class="d-flex align-items-center justify-content-between"> | ||
<div class="d-flex align-items-center"> | ||
<input name="" type="checkbox" value="" /> | ||
<span class="pl-2 font-weight-bold">Remember Me</span> | ||
</div> | ||
<div><a href="index.html">Forget Password?</a></div> | ||
</div> | ||
<div class="pb-2"> | ||
<a | ||
href="index.html" | ||
class="btn btn-dark w-100 font-weight-bold mt-2" | ||
>Submit | ||
</a> | ||
</div> | ||
</form> | ||
<div class="pt-4 text-center"> | ||
<a href="index.html">Back to Home </a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |