forked from HCI26/Front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.41 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>log in</title>
<link rel="stylesheet" href="style.CSS">
</head>
<body>
<header>
<a class="logolink" href="index.html">Observa</a>
<nav>
<ul class="bar">
<li><a class="Home" href="">Home</a></li>
<li><a class="Dashboard" href="">Conatct</a></li>
<li><a class="Settings" href="">About us</a></li>
</ul>
</nav>
<a class="pro" href=""><button>Sign up</button></a>
</header>
<main>
<div class="imgbox">
<img src="logo.svg" alt="logo">
</div>
<div class="login_box">
<h2> Welcome back </h2>
<form class="formbox">
<label for="username">username</label>
<input type="email" id="username" required ><br><br>
<label for="password">password</label>
<input type="password" id="password" required><br><br>
<input type="checkbox" name="remember me" id="remember me" value="remember me">
<label class="remember" for="remember me">remember me</label><br>
<a class="forget" href=""> Forget password? </a><br><br>
<input class="submit" type="submit" value="log in">
</form>
</div>
<main>
</body>
</html>