-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
47 lines (47 loc) · 1.7 KB
/
login.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="./css/app.css">
<link rel="stylesheet" href="./css/login.css">
</head>
<body>
<nav class="navbar" id="navbar">
<ul class="menu-content container">
<li class="app-title">App Title</li>
<li>
<ul class="menu-items">
<li><a href="./">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="#" class="active">Login</a></li>
</ul>
</li>
</ul>
</nav>
<main>
<div class="cont">
<div class="image">
<div class="shade">
<div>
<h1>Hello Dear!</h1>
<p>Want to know more about our services and products?<br> Login here to access all of our services.</p>
</div>
</div>
</div>
<form action="">
<h1>Login</h1>
<input type="email" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="checkbox" name="remember" id="remember"> <label for="remember">Remember me</label>
<input type="submit" value="LOG IN">
</form>
</div>
</main>
<script src="./js/app.js"></script>
</body>
</html>