-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (59 loc) · 1.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forgot password</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/F_icon.svg/2000px-F_icon.svg.png" />
</head>
<body>
<header class="header">
<div class="facebook-logo">
<a href="#">
<img src="img/fb.png" alt="logo">
</a>
</div>
<div class="log-in-form">
<div id="navbar"> <table class="tablewrapper">
<tr>
<td class="row1">Email or Phone</td>
<td class="row1">Password</td>
</tr>
<tr>
<td><input type="text">
</td>
<td><input type="password">
</td>
<td><div id="button">Log In</div></td>
</tr>
<tr>
<td>
<td class="row2 ">Forgot your password?</td>
</table>
</div>
</div>
</header>
<main class="container">
<div class="alert">
<div class="alert-header">
<h2>Find your account</h2>
</div>
<hr>
<div class="alert-form">
<label>
Please, enter your email or phone nubmer to search for your <br> account. <br>
<input type="text" placeholder="Email or phone number">
</label>
</div>
<div class="alert-footer">
<div class="buttons">
<button class="button-find">Find</button>
<button class="button-cancel">Cancel</button>
</div>
</div>
</div>
</main>
<footer class="footer">
</footer>
</body>
</html>