Skip to content

Commit

Permalink
k
Browse files Browse the repository at this point in the history
  • Loading branch information
060-NAVEENKUMARM committed Nov 10, 2023
1 parent b17fae3 commit 06ffc6b
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 40 deletions.
2 changes: 1 addition & 1 deletion About.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<style>
* {
margin: 0;
padding: 0;
padding: 0;c
box-sizing: border-box;
font-family: sans-serif;
}
Expand Down
106 changes: 67 additions & 39 deletions admin.html
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>

0 comments on commit 06ffc6b

Please sign in to comment.